www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 75bdf081319dce14d9ee5c498c7c68197b97987d
parent c32144ddfd1fd7edc68e7689073dba6e43596ff2
Author: Dan Stillman <dstillman@zotero.org>
Date:   Thu, 19 Jun 2014 17:54:21 -0400

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

Addresses #503

Diffstat:
Mchrome/content/zotero/bindings/styled-textbox.xml | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/chrome/content/zotero/bindings/styled-textbox.xml b/chrome/content/zotero/bindings/styled-textbox.xml @@ -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':