D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
javascript
/
sphinxdoc
/
1.0
/
Filename :
theme_extras.js
back
Copy
$(function() { var toc = $('#toc').show(), items = $('#toc > ul').hide(); $('#toc h3') .click(function() { if (items.is(':visible')) { items.animate({ height: 'hide', opacity: 'hide' }, 300, function() { toc.removeClass('expandedtoc'); }); } else { items.animate({ height: 'show', opacity: 'show' }, 400); toc.addClass('expandedtoc'); } }); });