1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-03 11:54:13 +01:00

pass all key events through to FF when in designMode

This commit is contained in:
Doug Kearns
2007-10-11 12:10:10 +00:00
parent 24179d1f91
commit f9cb9e3ddb

View File

@@ -428,6 +428,10 @@ function Events() //{{{
var stop = true; // set to false if we should NOT consume this event but let also firefox handle it
var win = document.commandDispatcher.focusedWindow;
if (win && win.document.designMode == "on")
return true;
if (vimperator.hasMode(vimperator.modes.MENU))
return true;