mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-01 04:45:45 +01:00
Don't push pass through mode multiple times. Closes issue #641.
This commit is contained in:
@@ -798,8 +798,8 @@ var Options = Module("options", {
|
||||
util.makeDTD(
|
||||
iter(([["option", o.name, "default"].join("."),
|
||||
o.type === "string" ? o.defaultValue.replace(/'/g, "''") :
|
||||
o.value === true ? "on" :
|
||||
o.value === false ? "off" : o.stringDefaultValue]
|
||||
o.defaultValue === true ? "on" :
|
||||
o.defaultValue === false ? "off" : o.stringDefaultValue]
|
||||
for (o in self)),
|
||||
|
||||
([["option", o.name, "type"].join("."), o.type] for (o in self)),
|
||||
|
||||
Reference in New Issue
Block a user