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

pass all key events through to FF when in designMode

This commit is contained in:
Doug Kearns
2007-10-11 08:35:53 +00:00
parent e261adcba4
commit 04a37997c4

View File

@@ -536,6 +536,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;
// menus have their own command handlers
if (vimperator.modes.extended & vimperator.modes.MENU)
return true;