www

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

commit 85d7c01c8582ba8ea7dad08c9813cb00d1b927e9
parent c7639f328fa15dd8606340cbb274003c1aa3fea2
Author: Dan Stillman <dstillman@zotero.org>
Date:   Wed, 20 Sep 2017 03:35:43 -0400

Fix getAsync() integer warning when clicking on related item

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

diff --git a/chrome/content/zotero/bindings/relatedbox.xml b/chrome/content/zotero/bindings/relatedbox.xml @@ -183,7 +183,7 @@ var box = document.createElement('box'); box.setAttribute('onclick', - "document.getBindingParent(this).showItem('" + id + "')"); + "document.getBindingParent(this).showItem(" + id + ")"); box.setAttribute('class','zotero-clicky'); box.setAttribute('flex','1'); box.appendChild(icon);