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
var me = this, maxNodes = me.config.maxNodesPerLevel;
if (maxNodes) {
if (maxNodes < root.children.length) {
....
}
for (index in root.children) {
var child = root.children[index];
me.preprocessData(child);
}
}
};
The text was updated successfully, but these errors were encountered:
Fix (apply recursively)
me.preprocessData = function(root) {
The text was updated successfully, but these errors were encountered: