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
A script on this page may be busy, or it may have stopped responding. You can stop the script now, open the script in the debugger, or let the script continue.
Script: http://localhost:9000/bower_components/jquery/dist/jquery.js:406
there are around 427 nodes in the tree structure. It mostly happened when we do a second search.
here is code I wrote:
scope.$watch('searchTerm', function(newValue, oldValue) {
if (newValue !== oldValue) {
$scope.$broadcast('toggle-loader', true);
var searchTerm = newValue.trim();
if (searchTerm.length) {
$scope.subgroupTree.treeInstance.jstree(true).search(searchTerm);
} else {
$scope.subgroupTree.treeInstance.jstree(true).clear_search();
}
}
});
The text was updated successfully, but these errors were encountered:
Here is the full message from the pop up window:
there are around 427 nodes in the tree structure. It mostly happened when we do a second search.
here is code I wrote:
The text was updated successfully, but these errors were encountered: