diff options
author | Georg Brandl <georg@python.org> | 2013-03-31 15:41:35 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-03-31 15:41:35 +0200 |
commit | d369ca4992d19fb91a26dd184b389b329e62cbc5 (patch) | |
tree | 4018d22b007632b8cc823b73f9cf55936ad3555f /sphinx/themes/basic | |
parent | 0a1cfe9ec30c6f0c338185c1e7c200fc39643924 (diff) | |
download | sphinx-d369ca4992d19fb91a26dd184b389b329e62cbc5.tar.gz |
#723: fix remaining issue with search and webkit browsers
Diffstat (limited to 'sphinx/themes/basic')
-rw-r--r-- | sphinx/themes/basic/static/searchtools.js_t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/themes/basic/static/searchtools.js_t b/sphinx/themes/basic/static/searchtools.js_t index 44837f87..58e24282 100644 --- a/sphinx/themes/basic/static/searchtools.js_t +++ b/sphinx/themes/basic/static/searchtools.js_t @@ -261,8 +261,8 @@ var Search = { var data = jqxhr.responseText; if (data !== '') { listItem.append(Search.makeSearchSummary(data, searchterms, hlterms)); - Search.output.append(listItem); } + Search.output.append(listItem); listItem.slideDown(5, function() { displayNextItem(); }); |