From a7ef8f2339766b766ff48d4a09909b2fd0f40602 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Tue, 1 Sep 2009 19:50:50 +0000 Subject: [PATCH] Disable asynchronous autocomplete for now, because it causes hangs (sorry Elena) --- components/zotero-autocomplete.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/zotero-autocomplete.js b/components/zotero-autocomplete.js index 16b7de2f0b..1d78cc23aa 100644 --- 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 = [];