tree reload current node

This commit is contained in:
perploug
2013-11-01 12:27:52 +01:00
parent 7e7d93c815
commit 04e6e43fee

View File

@@ -87,7 +87,14 @@ angular.module("umbraco.directives")
};
scope.eventhandler.reloadNode = function(node){
scope.loadChildren(node, true);
if(!node){
node = scope.currentNode;
}
if(node){
scope.loadChildren(node, true);
}
};
scope.eventhandler.syncPath = function(path, forceReload){