From e9e9527e60a5900b87071b907346f9bcea46fbe1 Mon Sep 17 00:00:00 2001 From: Philipp Zumstein Date: Tue, 3 Mar 2015 00:00:36 +0100 Subject: [PATCH] Add stopPropagation to menuitem of new icon This should solve 658 --- chrome/content/zotero/browser.js | 1 + 1 file changed, 1 insertion(+) diff --git a/chrome/content/zotero/browser.js b/chrome/content/zotero/browser.js index 80c0248be..a2ab63738 100644 --- a/chrome/content/zotero/browser.js +++ b/chrome/content/zotero/browser.js @@ -517,6 +517,7 @@ var Zotero_Browser = new function() { menuitem.setAttribute("class", "menuitem-iconic"); menuitem.addEventListener("command", function(e) { Zotero_Browser.scrapeThisPage(translator, e); + e.stopPropagation(); }, false); popup.appendChild(menuitem); }