istic-openstack/client/js/controllers/home/machineCreation.js
2016-05-04 18:50:28 +02:00

16 lines
515 B
JavaScript

/**
* The home controller
*
* @param {$scope} $scope The $scope service from angular
*/
mainApp.controller('machineCreationCtrl', ['$scope', 'Compute', '$rootScope', '$timeout', 'Identity', function ($scope, Compute, $rootScope, $timeout, Identity)
{
$scope.name = "loic"
// When we need to show details of machine
$scope.$on('showMachineCreationEvent', function (eventName) {
$('#machineCreationModal').modal({backdrop: false, keyboard: true});
});
}]);