diff options
author | Kris Maglione <maglione.k@gmail.com> | 2011-09-10 15:18:20 -0400 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2011-09-10 15:18:20 -0400 |
commit | 68d8bf74df55e8bf06ba8660010e6f28f99e598a (patch) | |
tree | 439fd92b568447e235803872548d3a2f3b6a0dee /common/modules/contexts.jsm | |
parent | f9d5b12757fea16326f60c079b23f58fd06f99dc (diff) | |
download | pentadactyl-68d8bf74df55e8bf06ba8660010e6f28f99e598a.tar.gz |
Move events.(toString|fromString|iterKeys|canonicalKeys) to DOM.Event.
Diffstat (limited to 'common/modules/contexts.jsm')
-rw-r--r-- | common/modules/contexts.jsm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/modules/contexts.jsm b/common/modules/contexts.jsm index 85525269..6f8eb7e4 100644 --- a/common/modules/contexts.jsm +++ b/common/modules/contexts.jsm @@ -421,7 +421,7 @@ var Contexts = Module("contexts", { /* fallthrough */ case "-keys": let silent = args["-silent"]; - rhs = events.canonicalKeys(rhs, true); + rhs = DOM.Event.canonicalKeys(rhs, true); var action = function action() { events.feedkeys(action.macro(makeParams(this, arguments)), noremap, silent); |