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

Remove a trailing comma.

This commit is contained in:
Doug Kearns
2009-05-11 20:15:08 +10:00
parent 7e4a0096de
commit a1c53bbdb0

View File

@@ -886,7 +886,7 @@ function Hints() //{{{
context.completions = [[k, v.prompt] for ([k, v] in Iterator(hintModes))]; context.completions = [[k, v.prompt] for ([k, v] in Iterator(hintModes))];
}, },
onChange: function () { modes.pop() }, onChange: function () { modes.pop() },
onCancel: function (arg) { arg && setTimeout(function () hints.show(arg), 0); }, onCancel: function (arg) { arg && setTimeout(function () hints.show(arg), 0); }
}); });
}, { flags: Mappings.flags.COUNT }); }, { flags: Mappings.flags.COUNT });