ac57dda074
- show providers (auto refresh: 2s) - show health (auto refresh: 3s) - more colors - add font - remove jumbotron - javascript minified version
12 lines
199 B
JavaScript
12 lines
199 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
angular
|
|
.module('traefik.section')
|
|
.config(['$urlRouterProvider', function ($urlRouterProvider) {
|
|
|
|
$urlRouterProvider.otherwise('/');
|
|
|
|
}]);
|
|
|
|
})();
|