bubbletree icon indicating copy to clipboard operation
bubbletree copied to clipboard

Bubble tree with single child does not populate .

Open vikasbadola opened this issue 12 years ago • 2 comments

Hi , i have a bubble tree with numbers of data from my database , now when i tested it i just noticed that a node with single child is not populating . Can anyone help me ? how can i populate a node with single child on its click .

vikasbadola avatar Feb 06 '14 12:02 vikasbadola

Found the problem in bubbletree.js:

line 1146: if (node.children.length < 2) { // ..because if it has no children.. change to: if (node.children.length < 1) { // ..because if it has no children..

ElliotTheRobot avatar Nov 21 '18 16:11 ElliotTheRobot