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

Add missing semicolons.

This commit is contained in:
Doug Kearns
2015-05-25 23:54:56 +10:00
parent 72a4d80ad1
commit 5ab1befbf7
35 changed files with 82 additions and 84 deletions

View File

@@ -442,7 +442,7 @@ var Option = Class("Option", {
SCOPE_BOTH: 3,
has: {
toggleAll: function toggleAll() toggleAll.supercall(this, "all") ^ !!toggleAll.superapply(this, arguments),
toggleAll: function toggleAll() toggleAll.supercall(this, "all") ^ !!toggleAll.superapply(this, arguments)
},
parseRegexp: function parseRegexp(value, result, flags) {
@@ -480,7 +480,7 @@ var Option = Class("Option", {
filter: filter,
result: result !== undefined ? result : !bang,
toString: function toString() this.bang + Option.quote(this.filter, /:/) +
(typeof this.result === "boolean" ? "" : ":" + quote(this.result)),
(typeof this.result === "boolean" ? "" : ":" + quote(this.result))
});
},
@@ -575,7 +575,7 @@ var Option = Class("Option", {
parseKey: {
number: Number,
boolean: function boolean(value) value == "true" || value == true ? true : false,
boolean: function boolean(value) value == "true" || value == true ? true : false
},
testValues: {