mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-21 17:27:59 +01:00
add missing semicolons
This commit is contained in:
committed by
Kris Maglione
parent
67e5788fd5
commit
01a7ead528
@@ -73,7 +73,7 @@ function Option(names, description, type, defaultValue, extraInfo) //{{{
|
||||
}
|
||||
Option.prototype = {
|
||||
get globalvalue() options.store.get(this.name),
|
||||
set globalvalue(val) { options.store.set(this.name, val) },
|
||||
set globalvalue(val) { options.store.set(this.name, val); },
|
||||
|
||||
parseValues: function (value)
|
||||
{
|
||||
@@ -164,8 +164,8 @@ Option.prototype = {
|
||||
if (this.checkHas)
|
||||
test = function (val) values.some(function (value) self.checkHas(value, val));
|
||||
let values = this.values;
|
||||
/* Return whether some argument matches */
|
||||
return Array.some(arguments, function (val) test(val))
|
||||
// return whether some argument matches
|
||||
return Array.some(arguments, function (val) test(val));
|
||||
},
|
||||
|
||||
hasName: function (name) this.names.indexOf(name) >= 0,
|
||||
|
||||
Reference in New Issue
Block a user