summaryrefslogtreecommitdiff
path: root/common/content/options.js
diff options
context:
space:
mode:
authorKris Maglione <maglione.k@gmail.com>2008-12-23 14:17:15 -0500
committerKris Maglione <maglione.k@gmail.com>2008-12-23 14:17:15 -0500
commitaa27e686c8732361d86490117a8ad69fb7ba0ee5 (patch)
treead2e28f8ff135a498476d478d745bba3968a8795 /common/content/options.js
parent1969caca06e6d9254384fccbee3212f558765fb2 (diff)
downloadpentadactyl-aa27e686c8732361d86490117a8ad69fb7ba0ee5.tar.gz
Fix :mkv for options with white space
Diffstat (limited to 'common/content/options.js')
-rw-r--r--common/content/options.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/content/options.js b/common/content/options.js
index b9aa8d66..558bedc6 100644
--- a/common/content/options.js
+++ b/common/content/options.js
@@ -743,8 +743,8 @@ function Options() //{{{
serial: function () [
{
command: this.name,
- literalArg: opt.type == "boolean" ? (opt.value ? "" : "no") + opt.name
- : opt.name + "=" + opt.value
+ arguments: [opt.type == "boolean" ? (opt.value ? "" : "no") + opt.name
+ : opt.name + "=" + opt.value]
}
for (opt in options)
if (!opt.getter && opt.value != opt.defaultValue && (opt.scope & options.OPTION_SCOPE_GLOBAL))