www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 9ffcd8930354ea1fbe0d9806ea938d01f86ae2a7
parent 8e5016ae4d5ca745c537aab2a58fd35a832fda96
Author: Dan Stillman <dstillman@zotero.org>
Date:   Tue, 15 Mar 2016 01:15:40 -0400

Fix error selecting from creator autocomplete

Diffstat:
Mchrome/content/zotero/bindings/itembox.xml | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/bindings/itembox.xml b/chrome/content/zotero/bindings/itembox.xml @@ -1569,7 +1569,7 @@ this._lastTabIndex = parseInt(textbox.getAttribute('ztabindex')) - 1; this._tabDirection = 1; - var creator = yield Zotero.Creators.getAsync(creatorID); + var creator = Zotero.Creators.get(creatorID); var otherField = creatorField == 'lastName' ? 'firstName' : 'lastName';