Correct bug

This commit is contained in:
Loic GUEGAN 2016-05-04 22:46:40 +02:00
parent cddd9682e6
commit a9e8c8e664
4 changed files with 35 additions and 30 deletions

View file

@ -42,7 +42,7 @@ mainApp.controller('machineDetailsCtrl', ['$scope', 'Compute', '$rootScope', '$t
};
$scope.deleteMachine=function(){
Compute.deleteMachine(function(){console.log("deleted")},$scope.machine.id);
Compute.deleteMachine(function(){Compute.pullData(function(){});},$scope.machine.id);
}
}]);