horizon/openstack_dashboard/static/dashboard/dashboard.module.js
Shaoquan Chen 6f1eec9ca7 Base launch instance wizard
- 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
2015-02-19 14:39:52 -08:00

11 lines
190 B
JavaScript

(function () {
'use strict';
var module = angular.module('hz.dashboard', [
'hz.dashboard.launch-instance'
]);
module.constant('dashboardBasePath', '/static/dashboard/');
})();