Howto/themes/grav-theme-howto/app/toc.js
2019-08-13 15:09:25 +02:00

6 lines
129 B
JavaScript

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