summaryrefslogtreecommitdiff
path: root/common/content/modes.js
diff options
context:
space:
mode:
authorKris Maglione <maglione.k@gmail.com>2011-02-18 20:59:16 -0500
committerKris Maglione <maglione.k@gmail.com>2011-02-18 20:59:16 -0500
commitce23dd079de0ab2338a3974bbffa0fbe4231cd08 (patch)
tree5c8adc0eff3f871834d76b94837b0e4dbaf5576f /common/content/modes.js
parent11c39de46bb8f5c001c1f1a3c6c6387367451632 (diff)
downloadpentadactyl-ce23dd079de0ab2338a3974bbffa0fbe4231cd08.tar.gz
Fix key event stringification letter-case issue for non-keypress events. Closes issue #258.
Diffstat (limited to 'common/content/modes.js')
-rw-r--r--common/content/modes.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/content/modes.js b/common/content/modes.js
index 8a7fa43d..96240f44 100644
--- a/common/content/modes.js
+++ b/common/content/modes.js
@@ -125,8 +125,8 @@ var Modes = Module("modes", {
});
this.addMode("EMBED", {
- input: true,
description: "Active when an <embed> or <object> element is focused",
+ input: true,
ownsFocus: true,
passthrough: true
});
@@ -135,6 +135,7 @@ var Modes = Module("modes", {
description: "All keys but <C-v> are ignored by " + config.appName,
bases: [this.BASE],
hidden: true,
+ input: true,
passthrough: true
});
this.addMode("QUOTE", {