Fix event handling (e.g., Undo) in notes in Fx32

Addresses #503
This commit is contained in:
Dan Stillman 2014-06-19 17:54:21 -04:00
parent c32144ddfd
commit 75bdf08131

View File

@ -123,6 +123,11 @@
var self = this;
this._eventHandler = function (event) {
// Necessary in Fx32+
if (event.wrappedJSObject) {
event = event.wrappedJSObject;
}
//Zotero.debug(event.type);
switch (event.type) {
case 'keydown':