Add stopPropagation to menuitem of new icon

This should solve 658
This commit is contained in:
Philipp Zumstein 2015-03-03 00:00:36 +01:00
parent 5285fadded
commit e9e9527e60

View file

@ -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);
}