From fb8984c94757f7b324f697facabd1066d5018c76 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sun, 5 Jul 2020 18:14:18 -0400 Subject: [PATCH] =?UTF-8?q?fx-compat:=20XULDocument=20=E2=86=92=20XMLDocum?= =?UTF-8?q?ent?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- chrome/content/zotero/zoteroPane.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/zoteroPane.js b/chrome/content/zotero/zoteroPane.js index 45896aa87f..08b4a72b0a 100644 --- a/chrome/content/zotero/zoteroPane.js +++ b/chrome/content/zotero/zoteroPane.js @@ -710,7 +710,7 @@ var ZoteroPane = new function() try { // Ignore keystrokes outside of Zotero pane - if (!(event.originalTarget.ownerDocument instanceof XULDocument)) { + if (!(event.originalTarget.ownerDocument instanceof XMLDocument)) { return; } }