horizon/openstack_dashboard/contrib/developer/static/dashboard/developer/developer.module.js
Tyr Johanson 9ed4acd4ff Schema Form Developer Panel
A developer panel that allows you to edit schema forms in real-time,
with multiple examples. Also, you can view that same form in a
standard Horizon modal to preview what the form will look like. Based
on http://schemaform.io/examples/bootstrap-example.html

Also fixes some bugs in the schema-form implementation:
- Arrays cleaned up and fixed
- Tab arrays cleaned up
- Improved modal form to use schema.title if available

Co-Authored-By: Rob Cresswell <robert.cresswell@outlook.com>
Change-Id: Ia75a18d4c0c064ae618ee923cd6d602b1ef6e66e
2017-02-22 11:01:02 +11:00

49 lines
1.4 KiB
JavaScript

/*
* (c) Copyright 2015 Cisco Systems, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
(function () {
'use strict';
/**
* @ngdoc module
* @ngname horizon.dashboard.developer
* @description
* Dashboard module to host developer panels.
*/
angular
.module('horizon.dashboard.developer', [
'horizon.dashboard.developer.form-builder',
'horizon.dashboard.developer.profiler',
'horizon.dashboard.developer.resource-browser',
'horizon.dashboard.developer.theme-preview'
])
.config(config);
config.$inject = [
'$provide',
'$windowProvider'
];
/**
* @name horizon.dashboard.developer.basePath
* @description Base path for the developer dashboard
*/
function config($provide, $windowProvider) {
var path = $windowProvider.$get().STATIC_URL + 'dashboard/developer/';
$provide.constant('horizon.dashboard.developer.basePath', path);
}
})();