From a9e8c8e6644a83e81fb904ab0febf199421865ba Mon Sep 17 00:00:00 2001 From: Loic GUEGAN Date: Wed, 4 May 2016 22:46:40 +0200 Subject: Correct bug --- client/js/controllers/home/machineDetails.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'client/js/controllers/home/machineDetails.js') diff --git a/client/js/controllers/home/machineDetails.js b/client/js/controllers/home/machineDetails.js index 06e296d..9ccb86b 100644 --- a/client/js/controllers/home/machineDetails.js +++ b/client/js/controllers/home/machineDetails.js @@ -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); } }]); -- cgit v1.2.3