Remove debug log.

This commit is contained in:
Jürg Lehni 2011-08-01 12:03:23 +01:00
parent 14895f412c
commit ea629fefda

View file

@ -141,10 +141,8 @@ var PaperScope = this.PaperScope = Base.extend(/** @lends PaperScope# */{
// Do not use Base.each, since we also want to enumerate over
// fields on PaperScope.prototype, e.g. all classes
for (var key in this) {
if (!/^(version|_id|load)/.test(key) && !(key in scope)) {
console.log(key);
if (!/^(version|_id|load)/.test(key) && !(key in scope))
scope[key] = this[key];
}
}
},