diff --git a/chrome/content/zotero/bindings/tagselector.xml b/chrome/content/zotero/bindings/tagselector.xml index 3b991da589..cd69fccc98 100644 --- a/chrome/content/zotero/bindings/tagselector.xml +++ b/chrome/content/zotero/bindings/tagselector.xml @@ -659,6 +659,11 @@ var elem = event.target; + // Ignore clicks not on tags + if (elem.localName != 'button') { + return; + } + // Ignore clicks on tags not in scope if (elem.getAttribute('inScope') == 'false') { return;