When manually expanding a node, do not automatically expand all children.

This commit is contained in:
chouseknecht
2013-07-03 12:11:20 -04:00
parent 1b3902a23b
commit b488514d6e

View File

@@ -25,9 +25,9 @@ angular.module('ChildrenHelper', ['RestServices', 'Utilities'])
for (var i = node + 1; i < set.length; i++) {
if (set[i].parent == set[node].id) {
set[i]['show'] = true;
if (set[i].related.children) {
expand(i);
}
//if (set[i].related.children) {
// expand(i);
//}
}
}
}