1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-07 19:04:11 +01:00

Fix options.dtd generation bug.

This commit is contained in:
Kris Maglione
2011-03-16 01:49:24 -04:00
parent 1360c6d690
commit 222ef1c16a
2 changed files with 2 additions and 2 deletions

View File

@@ -42,7 +42,7 @@ var Tabs = Module("tabs", {
for (let { linkedBrowser: { contentDocument } } in values(this.allTabs))
if (contentDocument.readyState === "complete")
dactyl.initDocument(contentDocument);
});
}, 1000);
},
_alternates: Class.memoize(function () [config.tabbrowser.mCurrentTab, null]),

View File

@@ -752,7 +752,7 @@ var Options = Module("options", {
services["dactyl:"].pages["options.dtd"] = function () [null,
util.makeDTD(
iter(([["option", o.name, "default"].join("."),
o.type === "string" ? o.value.replace(/'/g, "''") :
o.type === "string" ? o.defaultValue.replace(/'/g, "''") :
o.value === true ? "on" :
o.value === false ? "off" : o.stringDefaultValue]
for (o in self)),