1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-19 01:05:46 +01:00

Add dom.jsm. And stuff.

This commit is contained in:
Kris Maglione
2011-08-22 01:16:14 -04:00
parent 5f1fb91f95
commit fbb6af43ed
39 changed files with 1219 additions and 1191 deletions

View File

@@ -83,7 +83,7 @@ var Config = Module("config", ConfigBase, {
dactyl.beep();
},
completers: Class.memoize(function () update({ mailfolder: "mailFolder" }, this.__proto__.completers)),
completers: Class.Memoize(function () update({ mailfolder: "mailFolder" }, this.__proto__.completers)),
dialogs: {
about: ["About Thunderbird",
@@ -143,7 +143,7 @@ var Config = Module("config", ConfigBase, {
},
/*** optional options, there are checked for existence and a fallback provided ***/
features: Class.memoize(function () Set(
features: Class.Memoize(function () Set(
this.isComposeWindow ? ["addressbook"]
: ["hints", "mail", "marks", "addressbook", "tabs"])),