From 94a6e77d4c3ad46c5c87d9d472813b4aadd0a37a Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Wed, 18 Jan 2012 13:05:28 -0500 Subject: [PATCH] Fix bug. --- common/content/modes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/modes.js b/common/content/modes.js index 50b2ee5b..889abcd2 100644 --- a/common/content/modes.js +++ b/common/content/modes.js @@ -119,7 +119,7 @@ var Modes = Module("modes", { onKeyPress: function (events) { if (modes.main == modes.QUOTE) modes.pop(); } }); this.addMode("IGNORE", { hidden: true }, { - onKeyPress: function (events) Events.KILL, + onKeyPress: function (events) false, bases: [], passthrough: true });