removeChildren() remove only first level children. close #135

This commit is contained in:
Anton Lavrenov 2016-05-14 22:06:44 +07:00
parent 0e8c99b6c2
commit 34d18efcf8
5 changed files with 6 additions and 10 deletions

View File

@ -10,6 +10,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- `Konva.Path` will be filled when it is not closed - `Konva.Path` will be filled when it is not closed
- `Animation.start()` will not not immediate sync draw. This should improve performance a little. - `Animation.start()` will not not immediate sync draw. This should improve performance a little.
- Warning when node for `Tween` is not in layer yet. - Warning when node for `Tween` is not in layer yet.
- `removeChildren()` remove only first level children. So it will not remove grandchildren.
## [0.12.4][2016-04-19] ## [0.12.4][2016-04-19]

View File

@ -6642,9 +6642,6 @@
// reset parent to prevent many _setChildrenIndices calls // reset parent to prevent many _setChildrenIndices calls
delete child.parent; delete child.parent;
child.index = 0; child.index = 0;
if (child.hasChildren()) {
child.removeChildren();
}
child.remove(); child.remove();
} }
children = null; children = null;

6
konva.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -69,9 +69,6 @@
// reset parent to prevent many _setChildrenIndices calls // reset parent to prevent many _setChildrenIndices calls
delete child.parent; delete child.parent;
child.index = 0; child.index = 0;
if (child.hasChildren()) {
child.removeChildren();
}
child.remove(); child.remove();
} }
children = null; children = null;

View File

@ -528,7 +528,7 @@ suite('Container', function() {
layer.draw(); layer.draw();
assert.equal(layer.children.length, 0, 'layer should have 0 children'); assert.equal(layer.children.length, 0, 'layer should have 0 children');
assert.equal(group.children.length, 0, 'group should have 0 children'); assert.equal(group.children.length, 2, 'group still should have 2 children');
}); });
// ====================================================== // ======================================================