64d635f776
- slit provider between tabs - remove providerID from backend/frontend title - add Angular-Boostrap
20 lines
494 B
JavaScript
20 lines
494 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
angular
|
|
.module('traefik.section.providers.frontend-monitor')
|
|
.directive('frontendMonitor', function () {
|
|
return {
|
|
restrict: 'EA',
|
|
templateUrl: 'app/sections/providers/frontend-monitor/frontend-monitor.html',
|
|
controller: 'FrontendMonitorController',
|
|
controllerAs: 'frontendCtrl',
|
|
bindToController: true,
|
|
scope: {
|
|
frontend: '=',
|
|
frontendId: '='
|
|
}
|
|
};
|
|
});
|
|
|
|
})();
|