summaryrefslogtreecommitdiff
path: root/client/js/controllers
diff options
context:
space:
mode:
authorLoic GUEGAN <loic@Manzerbredes.home>2016-05-04 19:38:09 +0200
committerLoic GUEGAN <loic@Manzerbredes.home>2016-05-04 19:38:09 +0200
commit0266c16ffc97042853916c390aaaccecc72e69a1 (patch)
treeaed361ca7133bdab46683d1ff9c3edf38048ef27 /client/js/controllers
parentf819bc0c909dd85c4d98c8fb870ce5c6fce37383 (diff)
Commit for testing
Diffstat (limited to 'client/js/controllers')
-rwxr-xr-xclient/js/controllers/home/home.js4
-rw-r--r--client/js/controllers/home/machineCreation.js11
2 files changed, 12 insertions, 3 deletions
diff --git a/client/js/controllers/home/home.js b/client/js/controllers/home/home.js
index 7731500..910c6b2 100755
--- a/client/js/controllers/home/home.js
+++ b/client/js/controllers/home/home.js
@@ -32,8 +32,8 @@ mainApp.controller('homeCtrl', ['$scope', 'Compute', '$rootScope', 'Loading', 'I
});
- $scope.raiseShowMachineCreationEvent = function (){
- $rootScope.$broadcast("showMachineCreationEvent");
+ $scope.raiseShowMachineCreationEvent = function () {
+ $rootScope.$broadcast("showMachineCreationEvent", Compute.getData().axioms);
};
// Function to call from view to display the details of a machine
diff --git a/client/js/controllers/home/machineCreation.js b/client/js/controllers/home/machineCreation.js
index 11315dd..d1e6b6a 100644
--- a/client/js/controllers/home/machineCreation.js
+++ b/client/js/controllers/home/machineCreation.js
@@ -9,8 +9,17 @@ mainApp.controller('machineCreationCtrl', ['$scope', 'Compute', '$rootScope', '$
$scope.name = "loic"
// When we need to show details of machine
- $scope.$on('showMachineCreationEvent', function (eventName) {
+ $scope.$on('showMachineCreationEvent', function (eventName, axioms) {
+ $scope.axioms=axioms;
$('#machineCreationModal').modal({backdrop: false, keyboard: true});
});
+
+ $scope.createMachine=function(){
+ machine={}
+ machine.name="loicTest"
+ machine.flavorId=1
+ machine.imageId="fd1ea580-a83e-4dc8-833c-96ce2b6f1358"
+ Compute.createMachine(function(){console.log("done")}, machine)
+ };
}]);