From c25dc1e8ec833a548f7923fc8eb25a348429b70a Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Wed, 22 Aug 2007 07:56:43 +0000 Subject: [PATCH] Fix inability to right-click a metadata field (to access text transform options) on Windows --- chrome/content/zotero/itemPane.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/itemPane.js b/chrome/content/zotero/itemPane.js index e7c288142..2e65b11f2 100644 --- a/chrome/content/zotero/itemPane.js +++ b/chrome/content/zotero/itemPane.js @@ -900,7 +900,7 @@ var ZoteroItemPane = new function() if (!noedit){ valueElement.setAttribute('flex', 1); valueElement.setAttribute('ztabindex', tabindex); - valueElement.setAttribute('onclick', 'ZoteroItemPane.showEditor(this)'); + valueElement.setAttribute('onclick', '/* Skip right-click on Windows */ if (event.button) { return; } ZoteroItemPane.showEditor(this)'); valueElement.className = 'zotero-clicky'; }