summaryrefslogtreecommitdiff
path: root/lib/tpl/dokuwiki/script.js
blob: b31d3dc080193a2cd6542fea12b7eeca5f4389d1 (plain)
1
2
3
4
5
6
7
8
9
10
jQuery(function(){
    // check if we are in mobile mode
    if(jQuery('div.mobileTools').css('display') == 'none') return;

    // toc and sidebar hiding
    dw_page.makeToggle('#dokuwiki__aside h3.toggle','#dokuwiki__aside div.content');

    jQuery('#dw__toc h3.toggle').click();
    jQuery('#dokuwiki__aside h3.toggle').show().click();
});