horizon/openstack_dashboard/dashboards/project/static/dashboard/project/images/images.module.js
Tyr Johanson d0182f2493 Dashboard ReOrg - hz.dashboard --> horizon.dashboard
Rename all uses of 'hz.dashboard' in Angular code to
'horizon.dashboard'. There are two main reasons for
this change:

1. This is consistent with the pattern used for the
horizon framework (horizon.framework)

2. This aligns with the directory structure. 'horizon'
is a directory name and maps to /horizon and indicates
that the component is part of the horizon project. The
abbreviation 'hz' is now only used for legacy code.

Change-Id: Ic22d6b0819ed62b3af2656fcb167b08ac55857c2
Partial-Bug: 1478717
2015-08-07 13:33:15 -06:00

47 lines
1.3 KiB
JavaScript

/**
* (c) Copyright 2015 Hewlett-Packard Development Company, L.P.
*
* 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 overview
* @ngname horizon.dashboard.project.images
*
* @description
* Provides the services and widgets required
* to support and display the project images panel.
*/
angular
.module('horizon.dashboard.project.images', [])
.config(config);
config.$inject = [
'$provide',
'$windowProvider'
];
/**
* @name horizon.dashboard.project.images.basePath
* @description Base path for the project dashboard
*/
function config($provide, $windowProvider) {
var path = $windowProvider.$get().STATIC_URL + 'dashboard/project/images/';
$provide.constant('horizon.dashboard.project.images.basePath', path);
}
})();