Howto/themes/grav-theme-howto/app/toc.js

7 lines
129 B
JavaScript
Raw Normal View History

2019-08-13 15:09:25 +02:00
import $ from 'jquery';
// TOC
$(document).on('click', '.toc-toggle', () => {
$('.page-toc').toggleClass('toc-closed');
});