diff options
| author | Yoggzo <yogg@epsina.com> | 2016-03-08 17:30:26 +0100 |
|---|---|---|
| committer | Yoggzo <yogg@epsina.com> | 2016-03-08 17:30:26 +0100 |
| commit | 89f2c4ac8cd6b0f7766170d588eae2407124f8fc (patch) | |
| tree | 6275b180b1c1f45caba3e84437119f784f5ebfba /client/js/controllers/home | |
| parent | 66baa3ffc8bd119558eeb1e87cb05c6008df9d6f (diff) | |
| parent | 3b569b6d008d5b1936ee04948cf5c1cc08790f39 (diff) | |
Merge branch 'develop' into Evan
Diffstat (limited to 'client/js/controllers/home')
| -rw-r--r-- | client/js/controllers/home/home.js (renamed from client/js/controllers/home/main.js) | 10 | ||||
| -rw-r--r-- | client/js/controllers/home/machineDetails.js | 10 |
2 files changed, 14 insertions, 6 deletions
diff --git a/client/js/controllers/home/main.js b/client/js/controllers/home/home.js index f84f625..4402e62 100644 --- a/client/js/controllers/home/main.js +++ b/client/js/controllers/home/home.js @@ -3,7 +3,7 @@ * * @param {$scope} $scope The $scope service from angular */ -mainApp.controller('homeCtrl', [ '$scope', 'Compute', '$rootScope', 'Loading','Identity', function ($scope, Compute, $rootScope, Loading, Identity) +mainApp.controller('homeCtrl', [ '$scope', 'Compute', '$rootScope', 'Loading','Identity', 'Image', function ($scope, Compute, $rootScope, Loading, Identity, Image) { var callMeAfterPullData=function(data){ @@ -16,8 +16,14 @@ mainApp.controller('homeCtrl', [ '$scope', 'Compute', '$rootScope', 'Loading','I Loading.start(); Compute.pullData(callMeAfterPullData); } + else{ + if(Identity.isAlreadyLogin()){ + callMeAfterPullData(); + } + } - + + Image.getImages(function(){}); $scope.raiseShowMachineDetailsEvent=function(id){ diff --git a/client/js/controllers/home/machineDetails.js b/client/js/controllers/home/machineDetails.js index 24fac42..c015eaa 100644 --- a/client/js/controllers/home/machineDetails.js +++ b/client/js/controllers/home/machineDetails.js @@ -6,23 +6,25 @@ mainApp.controller('machineDetailsCtrl', [ '$scope', 'Compute', '$rootScope', '$timeout', function ($scope, Compute, $rootScope, $timeout) { + // Init scope $scope.machine={}; - $("#waitingForToggleMachine").hide(); + $scope.machineIsStarting=false; // For loading icon + $scope.$on('showMachineDetailsEvent', function(eventName ,machine, axioms){ $scope.machine=machine; $scope.axioms=axioms; - console.log(machine); $('#machineDetailsModal').modal({backdrop: false, keyboard: true}); }); $scope.toggleMachineState=function(){ - $("#waitingForToggleMachine").show(); + // Display gif + $scope.machineIsStarting=true; // Fake timeout $timeout(function(){ - $("#waitingForToggleMachine").hide(); + $scope.machineIsStarting=false; }, 3000); $timeout(function(){ $scope.machine.online=!$scope.machine.online; |
