1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-18 16:05:48 +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

@@ -57,7 +57,7 @@ var Binding = Class("Binding", {
}
},
events: Class.memoize(function () {
events: Class.Memoize(function () {
let res = [];
for (let obj in this.bindings)
if (Object.getOwnPropertyDescriptor(obj, "events"))
@@ -66,7 +66,7 @@ var Binding = Class("Binding", {
return res;
}),
properties: Class.memoize(function () {
properties: Class.Memoize(function () {
let res = {};
for (let obj in this.bindings)
for (let prop in properties(obj)) {