Fix a problem in the HTML search if the index takes too long

to load.
This commit is contained in:
Georg Brandl 2009-02-21 19:08:22 +01:00
parent 099b4ce0ea
commit 050560217c
2 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,9 @@
Release 0.5.2 (in development)
==============================
* Fix a problem in the HTML search if the index takes too long
to load.
* Don't output system messages while resolving, because they
would stay in the doctrees even if keep_warnings is false.

View File

@ -283,7 +283,7 @@ var Search = {
if (this.hasIndex())
this.query(query);
else
this.setQuery(query);
this.deferQuery(query);
},
query : function(query) {