aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'docs/build/_static/theme_extras.js')
-rw-r--r--docs/build/_static/theme_extras.js26
1 files changed, 0 insertions, 26 deletions
diff --git a/docs/build/_static/theme_extras.js b/docs/build/_static/theme_extras.js
deleted file mode 100644
index 1c04218..0000000
--- a/docs/build/_static/theme_extras.js
+++ /dev/null
@@ -1,26 +0,0 @@
-$(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');
- }
- });
-
-});