2015-10-05 14:11:43 +00:00
|
|
|
(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: '=',
|
2015-10-06 22:01:24 +00:00
|
|
|
frontendId: '='
|
2015-10-05 14:11:43 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
})();
|