mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-19 06:00:56 -05:00
Remove debug log.
This commit is contained in:
parent
14895f412c
commit
ea629fefda
1 changed files with 1 additions and 3 deletions
|
@ -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];
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue