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

7 lines
129 B
JavaScript

import $ from 'jquery';
// TOC
$(document).on('click', '.toc-toggle', () => {
$('.page-toc').toggleClass('toc-closed');
});