mirror of https://github.com/portainer/portainer
merge branch refactor80-module-names into internal
commit
ab52270238
|
@ -5,8 +5,8 @@ angular.module('uifordocker', [
|
|||
'ui.select',
|
||||
'ngCookies',
|
||||
'ngSanitize',
|
||||
'dockerui.services',
|
||||
'dockerui.filters',
|
||||
'uifordocker.services',
|
||||
'uifordocker.filters',
|
||||
'dashboard',
|
||||
'container',
|
||||
'containers',
|
||||
|
@ -148,4 +148,4 @@ angular.module('uifordocker', [
|
|||
.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('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 () {
|
||||
'use strict';
|
||||
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) {
|
||||
'use strict';
|
||||
// Resource for interacting with the docker containers
|
||||
|
|
Loading…
Reference in New Issue