Disable asynchronous autocomplete for now, because it causes hangs (sorry Elena)
This commit is contained in:
parent
46daa1db57
commit
a7ef8f2339
1 changed files with 2 additions and 1 deletions
|
@ -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 = [];
|
||||
|
|
Loading…
Reference in a new issue