
- Setting up base launch instance wizard to enable parallel development on steps in the work flow. - Adding business logic related code to openstack_dashboard project. - Using Horizon's well-defined plug-in architecture to hook launch instance to Horizon. Partially Implements: blueprint launch-instance-redesign Change-Id: Ibbbbfc7f49c58a78b0d1b29e363531d5ae1a9aab
25 lines
517 B
JavaScript
25 lines
517 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
var module = angular.module('hz.dashboard.launch-instance');
|
|
|
|
module.controller('LaunchInstanceSourceCtrl', [
|
|
'$scope',
|
|
LaunchInstanceSourceCtrl
|
|
]);
|
|
|
|
module.controller('LaunchInstanceSourceHelpCtrl', [
|
|
'$scope',
|
|
LaunchInstanceSourceHelpCtrl
|
|
]);
|
|
|
|
function LaunchInstanceSourceCtrl($scope) {
|
|
$scope.title = gettext('Instance Details');
|
|
}
|
|
|
|
function LaunchInstanceSourceHelpCtrl($scope) {
|
|
$scope.title = gettext('Instance Details Help');
|
|
}
|
|
|
|
})();
|