commit a7ef8f2339766b766ff48d4a09909b2fd0f40602
parent 46daa1db5750e6c7865a7fa9d5b04aa2904c99b0
Author: Dan Stillman <dstillman@zotero.org>
Date: Tue, 1 Sep 2009 19:50:50 +0000
Disable asynchronous autocomplete for now, because it causes hangs (sorry Elena)
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/components/zotero-autocomplete.js b/components/zotero-autocomplete.js
@@ -199,7 +199,8 @@ ZoteroAutoComplete.prototype.startSearch = function(searchString, searchParam, p
statement = this._zotero.DB.getStatement(sql, sqlParams);
}
- if (this._zotero.isFx30) {
+ // Disable asynchronous until we figure out the hangs
+ if (true || this._zotero.isFx30) {
var rows = this._zotero.DB.query(sql, sqlParams);
var results = [];
var comments = [];