diff options
author | Nawa <bellefeegore@follepensee.net> | 2012-11-28 14:20:55 +0100 |
---|---|---|
committer | Nawa <bellefeegore@follepensee.net> | 2012-11-28 14:20:55 +0100 |
commit | 3b63d13346bc3392c57859f6390a55863387f894 (patch) | |
tree | 04d9dafddd51b2182a856624497ecd551eb4437f /docs/_build/html/_static/doctools.js | |
parent | c590082daa7b5eca6d5f021e356e4ddd15cee595 (diff) | |
download | Chimère-3b63d13346bc3392c57859f6390a55863387f894.tar.bz2 Chimère-3b63d13346bc3392c57859f6390a55863387f894.zip |
Premières corrections, essentiellement sur install.rst
Diffstat (limited to 'docs/_build/html/_static/doctools.js')
-rw-r--r-- | docs/_build/html/_static/doctools.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/_build/html/_static/doctools.js b/docs/_build/html/_static/doctools.js index d4619fd..8b9bd2c 100644 --- a/docs/_build/html/_static/doctools.js +++ b/docs/_build/html/_static/doctools.js @@ -2,7 +2,7 @@ * doctools.js * ~~~~~~~~~~~ * - * Sphinx JavaScript utilities for all documentation. + * Sphinx JavaScript utilties 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); - $('<p class="highlight-link"><a href="javascript:Documentation.' + - 'hideSearchWords()">' + _('Hide Search Matches') + '</a></p>') - .appendTo($('#searchbox')); + $('<li class="highlight-link"><a href="javascript:Documentation.' + + 'hideSearchWords()">' + _('Hide Search Matches') + '</a></li>') + .appendTo($('.sidebar .this-page-menu')); } }, @@ -213,7 +213,7 @@ var Documentation = { * helper function to hide the search marks again */ hideSearchWords : function() { - $('#searchbox .highlight-link').fadeOut(300); + $('.sidebar .this-page-menu li.highlight-link').fadeOut(300); $('span.highlighted').removeClass('highlighted'); }, |