summaryrefslogtreecommitdiff
path: root/client/js/controllers/home/home.js
diff options
context:
space:
mode:
authorApache <apache@localhost.localdomain>2016-03-16 11:11:25 +0100
committerApache <apache@localhost.localdomain>2016-03-16 11:11:25 +0100
commita2f120aa7350e9417e80db26abf36b7e53c3196b (patch)
tree991352de902f741bdf907a010098a88e5d3244cc /client/js/controllers/home/home.js
parent11dc33c440f97410a2358f7e615d2adc5e69f072 (diff)
Front-end path redefinition
Diffstat (limited to 'client/js/controllers/home/home.js')
-rw-r--r--client/js/controllers/home/home.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/js/controllers/home/home.js b/client/js/controllers/home/home.js
index 4402e62..d20779b 100644
--- a/client/js/controllers/home/home.js
+++ b/client/js/controllers/home/home.js
@@ -22,17 +22,17 @@ mainApp.controller('homeCtrl', [ '$scope', 'Compute', '$rootScope', 'Loading','I
}
}
-
+
Image.getImages(function(){});
-
+
$scope.raiseShowMachineDetailsEvent=function(id){
var callback=function(){
Loading.stop();
var data=Compute.getData();
$rootScope.$broadcast("showMachineDetailsEvent", data.machines[id], data.axioms);
-
+
}
Loading.start();
Compute.pullMachines(callback);