mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Fix a problem in the HTML search if the index takes too long
to load.
This commit is contained in:
parent
099b4ce0ea
commit
050560217c
3
CHANGES
3
CHANGES
@ -1,6 +1,9 @@
|
|||||||
Release 0.5.2 (in development)
|
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
|
* Don't output system messages while resolving, because they
|
||||||
would stay in the doctrees even if keep_warnings is false.
|
would stay in the doctrees even if keep_warnings is false.
|
||||||
|
|
||||||
|
@ -283,7 +283,7 @@ var Search = {
|
|||||||
if (this.hasIndex())
|
if (this.hasIndex())
|
||||||
this.query(query);
|
this.query(query);
|
||||||
else
|
else
|
||||||
this.setQuery(query);
|
this.deferQuery(query);
|
||||||
},
|
},
|
||||||
|
|
||||||
query : function(query) {
|
query : function(query) {
|
||||||
|
Loading…
Reference in New Issue
Block a user