6f1eec9ca7
- 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
11 lines
190 B
JavaScript
11 lines
190 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
var module = angular.module('hz.dashboard', [
|
|
'hz.dashboard.launch-instance'
|
|
]);
|
|
|
|
module.constant('dashboardBasePath', '/static/dashboard/');
|
|
|
|
})();
|