1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-29 11:55: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

@@ -75,7 +75,7 @@ var Group = Class("Group", {
});
},
defaultFilter: Class.memoize(function () this.compileFilter(["*"]))
defaultFilter: Class.Memoize(function () this.compileFilter(["*"]))
});
var Contexts = Module("contexts", {
@@ -283,9 +283,9 @@ var Contexts = Module("contexts", {
return frame;
},
groups: Class.memoize(function () this.matchingGroups()),
groups: Class.Memoize(function () this.matchingGroups()),
allGroups: Class.memoize(function () Object.create(this.groupsProto, {
allGroups: Class.Memoize(function () Object.create(this.groupsProto, {
groups: { value: this.initializedGroups() }
})),
@@ -486,7 +486,7 @@ var Contexts = Module("contexts", {
get persist() this.group.persist,
set persist(val) this.group.persist = val,
prefix: Class.memoize(function () this.name === "builtin" ? "" : this.name + ":"),
prefix: Class.Memoize(function () this.name === "builtin" ? "" : this.name + ":"),
get toStringParams() [this.name]
})