1/*
2 * TocTweak plugin for DokuWiki;
3 */
4jQuery(function() {
5    if (typeof(JSINFO.toc) != 'undefined') {
6        var $toc = jQuery('#dw__toc h3');
7        if ($toc.length) {
8            $toc[0].setState(JSINFO.toc.initial_state);
9        }
10    }
11});
12