diff --git a/chrome/content/zotero/bindings/attachmentbox.xml b/chrome/content/zotero/bindings/attachmentbox.xml index b959b6720c..5402182755 100644 --- a/chrome/content/zotero/bindings/attachmentbox.xml +++ b/chrome/content/zotero/bindings/attachmentbox.xml @@ -245,7 +245,9 @@ urlField.setAttribute('hidden', false); if (this.clickableLink) { urlField.onclick = function (event) { - ZoteroPane_Local.loadURI(this.value, event) + if (event.button != 2) { + ZoteroPane_Local.loadURI(this.value, event) + } }; urlField.className = 'zotero-text-link'; }