mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-22 04:17:59 +01:00
Add missing semicolons.
--HG-- extra : rebase_source : 9b307f142d55c3cd89ea6010ea15f1d26b11846f
This commit is contained in:
@@ -34,7 +34,7 @@ function deprecated(reason, fn) {
|
||||
deprecatedMethod.seen = { "chrome://dactyl/content/javascript.js": true };
|
||||
return callable(fn) ? deprecatedMethod : Class.Property({
|
||||
get: function () deprecatedMethod,
|
||||
init: function (prop) { name = prop }
|
||||
init: function (prop) { name = prop; }
|
||||
});
|
||||
}
|
||||
|
||||
@@ -622,7 +622,7 @@ const Dactyl = Module("dactyl", {
|
||||
|
||||
if (obj instanceof Command) {
|
||||
tag = spec = function (cmd) <>:{cmd}</>;
|
||||
link = function (cmd) <ex>:{cmd}</ex>
|
||||
link = function (cmd) <ex>:{cmd}</ex>;
|
||||
args = obj.parseArgs("", CompletionContext(str || ""));
|
||||
}
|
||||
else if (obj instanceof Map && obj.count) {
|
||||
|
||||
Reference in New Issue
Block a user