summaryrefslogtreecommitdiff
path: root/docs/_build/html/_static/doctools.js
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@peacefrogs.net>2012-11-30 01:12:27 +0100
committerÉtienne Loks <etienne.loks@peacefrogs.net>2012-11-30 01:12:27 +0100
commitedc9cbc5b49c8869343957566098dd6bbf8a9f3e (patch)
treea29c73879e8e0438fef71424a4c3bf9252a28a2e /docs/_build/html/_static/doctools.js
parentddab1341682476ba36c8d776c940137e5db564b8 (diff)
downloadChimère-edc9cbc5b49c8869343957566098dd6bbf8a9f3e.tar.bz2
Chimère-edc9cbc5b49c8869343957566098dd6bbf8a9f3e.zip
Documentation: add missing image
Diffstat (limited to 'docs/_build/html/_static/doctools.js')
-rw-r--r--docs/_build/html/_static/doctools.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/_build/html/_static/doctools.js b/docs/_build/html/_static/doctools.js
index 8b9bd2c..d4619fd 100644
--- a/docs/_build/html/_static/doctools.js
+++ b/docs/_build/html/_static/doctools.js
@@ -2,7 +2,7 @@
* doctools.js
* ~~~~~~~~~~~
*
- * Sphinx JavaScript utilties for all documentation.
+ * Sphinx JavaScript utilities for all documentation.
*
* :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
@@ -185,9 +185,9 @@ var Documentation = {
body.highlightText(this.toLowerCase(), 'highlighted');
});
}, 10);
- $('<li class="highlight-link"><a href="javascript:Documentation.' +
- 'hideSearchWords()">' + _('Hide Search Matches') + '</a></li>')
- .appendTo($('.sidebar .this-page-menu'));
+ $('<p class="highlight-link"><a href="javascript:Documentation.' +
+ 'hideSearchWords()">' + _('Hide Search Matches') + '</a></p>')
+ .appendTo($('#searchbox'));
}
},
@@ -213,7 +213,7 @@ var Documentation = {
* helper function to hide the search marks again
*/
hideSearchWords : function() {
- $('.sidebar .this-page-menu li.highlight-link').fadeOut(300);
+ $('#searchbox .highlight-link').fadeOut(300);
$('span.highlighted').removeClass('highlighted');
},