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

Fix feedkey mappings on FF36.

This commit is contained in:
Kris Maglione
2011-01-19 23:37:44 -05:00
parent 8142d837c1
commit 8df4e908e8
2 changed files with 6 additions and 4 deletions

View File

@@ -830,7 +830,7 @@ var Hints = Module("hints", {
context.compare = function () 0;
context.completions = [[k, v.prompt] for ([k, v] in Iterator(hints._hintModes))];
},
onAccept: function (arg) { arg && util.timeout(function () hints.show(arg, opts), 0); },
onAccept: function (arg) { arg && util.timeout(function () dactyl.trapErrors(hints.show, hints, arg, opts), 0); },
get onCancel() this.onAccept,
onChange: function () { modes.pop(); }
});