summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/_themes/eldocs/static/asset/js/method-toc.js
diff options
context:
space:
mode:
authorAhmad Anbar <aanbar@gmail.com>2015-01-11 18:39:06 +0100
committerAhmad Anbar <aanbar@gmail.com>2015-01-11 18:39:06 +0100
commitc8e1de74b139dc7f3e776f7ebf98495ec5b780a6 (patch)
tree51709a1855d570ba495d81a172a029015341c2bd /user_guide_src/source/_themes/eldocs/static/asset/js/method-toc.js
parentfaa4890addbaa90254ef160813a08f727d069415 (diff)
parent99f31e76bd06876cd3bf789f9d2774f79818b7df (diff)
Merge remote-tracking branch 'upstream/develop' into develop
Diffstat (limited to 'user_guide_src/source/_themes/eldocs/static/asset/js/method-toc.js')
-rw-r--r--user_guide_src/source/_themes/eldocs/static/asset/js/method-toc.js44
1 files changed, 0 insertions, 44 deletions
diff --git a/user_guide_src/source/_themes/eldocs/static/asset/js/method-toc.js b/user_guide_src/source/_themes/eldocs/static/asset/js/method-toc.js
deleted file mode 100644
index a926b3da9..000000000
--- a/user_guide_src/source/_themes/eldocs/static/asset/js/method-toc.js
+++ /dev/null
@@ -1,44 +0,0 @@
-/* modified from http://stackoverflow.com/a/12459801 */
-$(function (){
- var createList = function(selector){
-
- var ul = $('<ul>');
- var selected = $(selector);
-
- if (selected.length === 0){
- return;
- }
-
- selected.clone().each(function (i,e){
-
- var p = $(e).children('.descclassname');
- var n = $(e).children('.descname');
- var l = $(e).children('.headerlink');
-
- var a = $('<a>');
- a.attr('href',l.attr('href')).attr('title', 'jump to ' + n + '()');
-
- a.append(p).append(n);
-
- var entry = $('<li>').append(a);
- ul.append(entry);
- });
- return ul;
- }
-
- var c = $('<div>');
-
- var ul0 = c.clone().append($('.submodule-index'))
-
- customIndex = $('.custom-index');
- customIndex.empty();
- customIndex.append(ul0);
-
- var l = createList('dl.method > dt, dl.function > dt');
- if (l) {
- var ul = c.clone()
- .append('<h3>Methods / Functions</h3>')
- .append(l);
- }
- customIndex.append(ul);
-}); \ No newline at end of file