Fix inability to right-click a metadata field (to access text transform options) on Windows

This commit is contained in:
Dan Stillman 2007-08-22 07:56:43 +00:00
parent 65ff7e6c3f
commit c25dc1e8ec

View File

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