diff --git a/docs/conf.py b/docs/conf.py index e75546c49..2c25588a0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -140,7 +140,7 @@ html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] +html_static_path = ['_static', 'resources'] # Add any extra paths that contain custom files (such as robots.txt or # .htaccess) here, relative to this directory. These files are copied diff --git a/docs/_static/js/script.js b/docs/resources/js/script.js similarity index 98% rename from docs/_static/js/script.js rename to docs/resources/js/script.js index 2cd7335ec..3bc216c2d 100644 --- a/docs/_static/js/script.js +++ b/docs/resources/js/script.js @@ -5,7 +5,7 @@ jQuery(document).ready(function ($) { $section.children('.section, .function, .method').each(function () { if ($(this).hasClass('section')) { sectionID = $(this).attr('id'); - search($(this), $sidebarItem.parent().find('[href=#'+sectionID+']')); + search($(this), $sidebarItem.parent().find('[href="#'+sectionID+'"]')); } else { var $dt = $(this).children('dt'); var id = $dt.attr('id'); @@ -48,7 +48,7 @@ jQuery(document).ready(function ($) { } }); }; - search($('[itemprop=articleBody] > .section'), $('.wy-nav-side a[href=#]')); + search($('[itemprop=articleBody] > .section'), $('.wy-nav-side a[href="#"]')); }, 0); $(window).on('hashchange', function () { $('ul[data-sectionID]').each(function () {