mirror of
https://github.com/portainer/portainer.git
synced 2025-07-29 18:29:44 +02:00
merge branch refactor80-module-names into internal
This commit is contained in:
commit
ab52270238
3 changed files with 5 additions and 5 deletions
|
@ -5,8 +5,8 @@ angular.module('uifordocker', [
|
||||||
'ui.select',
|
'ui.select',
|
||||||
'ngCookies',
|
'ngCookies',
|
||||||
'ngSanitize',
|
'ngSanitize',
|
||||||
'dockerui.services',
|
'uifordocker.services',
|
||||||
'dockerui.filters',
|
'uifordocker.filters',
|
||||||
'dashboard',
|
'dashboard',
|
||||||
'container',
|
'container',
|
||||||
'containers',
|
'containers',
|
||||||
|
@ -148,4 +148,4 @@ angular.module('uifordocker', [
|
||||||
.constant('DOCKER_ENDPOINT', 'dockerapi')
|
.constant('DOCKER_ENDPOINT', 'dockerapi')
|
||||||
.constant('DOCKER_PORT', '') // Docker port, leave as an empty string if no port is requred. If you have a port, prefix it with a ':' i.e. :4243
|
.constant('DOCKER_PORT', '') // Docker port, leave as an empty string if no port is requred. If you have a port, prefix it with a ':' i.e. :4243
|
||||||
.constant('CONFIG_ENDPOINT', 'config')
|
.constant('CONFIG_ENDPOINT', 'config')
|
||||||
.constant('UI_VERSION', 'v1.5.0');
|
.constant('UI_VERSION', 'v1.5.0');
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
angular.module('dockerui.filters', [])
|
angular.module('uifordocker.filters', [])
|
||||||
.filter('truncate', function () {
|
.filter('truncate', function () {
|
||||||
'use strict';
|
'use strict';
|
||||||
return function (text, length, end) {
|
return function (text, length, end) {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
angular.module('dockerui.services', ['ngResource', 'ngSanitize'])
|
angular.module('uifordocker.services', ['ngResource', 'ngSanitize'])
|
||||||
.factory('Container', ['$resource', 'Settings', function ContainerFactory($resource, Settings) {
|
.factory('Container', ['$resource', 'Settings', function ContainerFactory($resource, Settings) {
|
||||||
'use strict';
|
'use strict';
|
||||||
// Resource for interacting with the docker containers
|
// Resource for interacting with the docker containers
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue