aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/py/mock/html/_static/toc.js
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/py/mock/html/_static/toc.js')
-rw-r--r--third_party/py/mock/html/_static/toc.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/third_party/py/mock/html/_static/toc.js b/third_party/py/mock/html/_static/toc.js
new file mode 100644
index 0000000000..7b709785d4
--- /dev/null
+++ b/third_party/py/mock/html/_static/toc.js
@@ -0,0 +1,20 @@
+var TOC = {
+ load: function () {
+ $('#toc_button').click(TOC.toggle);
+ },
+
+ toggle: function () {
+ if ($('#sphinxsidebar').toggle().is(':hidden')) {
+ $('div.document').css('left', "0px");
+ $('toc_button').removeClass("open");
+ } else {
+ $('div.document').css('left', "230px");
+ $('#toc_button').addClass("open");
+ }
+ return $('#sphinxsidebar');
+ }
+};
+
+$(document).ready(function () {
+ TOC.load();
+}); \ No newline at end of file