mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-22 07:19:57 -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() {
|
removeChildren: function() {
|
||||||
var removed = false;
|
var removed = false;
|
||||||
if (this._children) {
|
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;
|
removed = this._children[i].remove() || removed;
|
||||||
}
|
}
|
||||||
return removed;
|
return removed;
|
||||||
|
|
Loading…
Reference in a new issue