You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Renamed tree.on('tree.open') to tree.on('openNode')
Renamed tree.on('tree.close') to tree.on('closeNode')
Renamed tree.on('tree.select') to tree.on('selectNode')
Added events
Added tree.on('scrollProgress')
New Functions Implemented
scrollToNode
// Set the current scroll position to this nodeconsole.log(tree.scrollToNode(node));
scrollTop
// Get current vertical position of the scroll barconsole.log(tree.scrollTop());// Set current vertical position of the scroll barvarnewPos=nodeIndex*nodeHeight;console.log(tree.scrollTop(newPos));