summaryrefslogtreecommitdiff
path: root/common/content/options.js
diff options
context:
space:
mode:
authorDoug Kearns <dougkearns@gmail.com>2008-12-19 23:00:14 +1100
committerDoug Kearns <dougkearns@gmail.com>2008-12-19 23:00:14 +1100
commitd60c81ef23608e32bfa8c059a29a7deaf6b27473 (patch)
treef41260c50ffe4864398c0d7067924cefe64cd999 /common/content/options.js
parentd65b23be3dd2051a65aaa9836ad92398ec0db4e3 (diff)
downloadpentadactyl-d60c81ef23608e32bfa8c059a29a7deaf6b27473.tar.gz
add missing semicolons
Diffstat (limited to 'common/content/options.js')
-rw-r--r--common/content/options.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/content/options.js b/common/content/options.js
index 460490bb..6373dcb6 100644
--- a/common/content/options.js
+++ b/common/content/options.js
@@ -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,