mirror of
https://github.com/portainer/portainer.git
synced 2025-07-27 17:29:39 +02:00
refactor(ui): rename angular modules from dockerui to uifordocker (#88)
This commit is contained in:
parent
adf5184a5d
commit
7c6fdebb3d
3 changed files with 4 additions and 4 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',
|
||||||
|
|
|
@ -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