1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-09 16:44:11 +01:00

Fix feedkeys in other circumstances.

This commit is contained in:
Kris Maglione
2010-11-20 20:04:00 -05:00
parent 0a3ec8c768
commit 88a8d07958

View File

@@ -359,7 +359,7 @@ const Events = Module("events", {
dispatch: Class.memoize(function ()
util.haveGecko("2b")
? function (target, event) // This causes a crash on Gecko<2.0, it seems.
target.ownerDocument.defaultView
(target.ownerDocument || target.document || target).defaultView
.QueryInterface(Ci.nsIInterfaceRequestor).getInterface(Ci.nsIDOMWindowUtils)
.dispatchDOMEventViaPresShell(target, event, true)
: function (target, event) target.dispatchEvent(event)),