1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-19 17:38:00 +01:00

Fix key event stringification letter-case issue for non-keypress events. Closes issue #258.

This commit is contained in:
Kris Maglione
2011-02-18 20:59:16 -05:00
parent 11c39de46b
commit ce23dd079d
2 changed files with 24 additions and 12 deletions

View File

@@ -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", {