We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88ecdd9 commit e87d920Copy full SHA for e87d920
src/aui-tree/js/aui-tree-node.js
@@ -716,6 +716,13 @@ var TreeNode = A.Component.create({
716
expand: function() {
717
var instance = this;
718
719
+ var boundingBox = instance.get('boundingBox');
720
+ var nodeContainer = instance.get('container');
721
+
722
+ if (nodeContainer && !boundingBox.contains(nodeContainer)) {
723
+ boundingBox.append(nodeContainer);
724
+ }
725
726
instance.set('expanded', true);
727
},
728
0 commit comments