From 85d7c01c8582ba8ea7dad08c9813cb00d1b927e9 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Wed, 20 Sep 2017 03:35:43 -0400 Subject: [PATCH] Fix getAsync() integer warning when clicking on related item --- chrome/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 index 617e4655a..7bb5d0cf3 100644 --- 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);