1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-23 23:45:45 +01:00

Fix some Firefox version-specific brokenness.

This commit is contained in:
Kris Maglione
2010-11-07 07:33:25 -05:00
parent 21fe6d9fff
commit 506c684073
6 changed files with 8 additions and 16 deletions

View File

@@ -408,11 +408,11 @@ const ex = {
dactyl.assert(cmd, "No such command");
return update(function exCommand(options) {
let args = this._args(cmd, arguments);
let args = ex._args(cmd, arguments);
args.verify();
return cmd.execute(args);
}, {
dactylCompleter: this._complete(cmd)
dactylCompleter: ex._complete(cmd)
});
},