mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +08:00
removeChildren()
remove only first level children. close #135
This commit is contained in:
parent
0e8c99b6c2
commit
34d18efcf8
@ -10,6 +10,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
- `Konva.Path` will be filled when it is not closed
|
||||
- `Animation.start()` will not not immediate sync draw. This should improve performance a little.
|
||||
- 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]
|
||||
|
||||
|
3
konva.js
3
konva.js
@ -6642,9 +6642,6 @@
|
||||
// reset parent to prevent many _setChildrenIndices calls
|
||||
delete child.parent;
|
||||
child.index = 0;
|
||||
if (child.hasChildren()) {
|
||||
child.removeChildren();
|
||||
}
|
||||
child.remove();
|
||||
}
|
||||
children = null;
|
||||
|
6
konva.min.js
vendored
6
konva.min.js
vendored
File diff suppressed because one or more lines are too long
@ -69,9 +69,6 @@
|
||||
// reset parent to prevent many _setChildrenIndices calls
|
||||
delete child.parent;
|
||||
child.index = 0;
|
||||
if (child.hasChildren()) {
|
||||
child.removeChildren();
|
||||
}
|
||||
child.remove();
|
||||
}
|
||||
children = null;
|
||||
|
@ -528,7 +528,7 @@ suite('Container', function() {
|
||||
layer.draw();
|
||||
|
||||
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');
|
||||
});
|
||||
|
||||
// ======================================================
|
||||
|
Loading…
Reference in New Issue
Block a user