mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-06 04:42:15 -05:00
Fix typo.
This commit is contained in:
parent
d535a1f6fc
commit
97c4435d87
1 changed files with 1 additions and 1 deletions
|
@ -295,7 +295,7 @@ var Item = this.Item = Base.extend({
|
|||
removeChildren: function() {
|
||||
var removed = false;
|
||||
if (this._children) {
|
||||
for (var i = this._children.length; i >= 0 i--)
|
||||
for (var i = this._children.length; i >= 0; i--)
|
||||
removed = this._children[i].remove() || removed;
|
||||
}
|
||||
return removed;
|
||||
|
|
Loading…
Reference in a new issue