diff options
author | Kris Maglione <maglione.k@gmail.com> | 2011-03-12 15:06:47 -0500 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2011-03-12 15:06:47 -0500 |
commit | 243559ec1778743d3a34f1de4c4c0aaff424bbbf (patch) | |
tree | ecd6e0182c4e638556a512f1ddbc1b70d570f6e6 /common/modules/options.jsm | |
parent | 45260a2f69cdcff8996d994d028e72ae07046913 (diff) | |
download | pentadactyl-243559ec1778743d3a34f1de4c4c0aaff424bbbf.tar.gz |
Don't accept non-boolean options with 'no' prefixes.
Diffstat (limited to 'common/modules/options.jsm')
-rw-r--r-- | common/modules/options.jsm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/modules/options.jsm b/common/modules/options.jsm index e5e630aa..4c9c089d 100644 --- a/common/modules/options.jsm +++ b/common/modules/options.jsm @@ -797,7 +797,7 @@ var Options = Module("options", { * {@link Map#extraInfo}). * @optional */ - add: function (names, description, type, defaultValue, extraInfo) { + add: function add(names, description, type, defaultValue, extraInfo) { const self = this; if (!extraInfo) |