blob: e4bd9efc8c52812402f4aeaab6978a00f1584feb [file] [log] [blame]
Matteo Scandolo46b56102015-12-16 14:23:08 -08001angular.module('autoscaling')
2.directive('serviceContainer', function(lodash){
3 return {
4 restrict: 'E',
5 scope: {},
6 bindToController: true,
7 controllerAs: 'vm',
8 templateUrl: 'templates/service-container.tpl.html',
Matteo Scandolo8942e042015-12-16 14:41:21 -08009 controller: ($rootScope) => {
10 $rootScope.$on('autoscaling.update', (evt, data) => {
11 console.log(data);
12 });
Matteo Scandolo46b56102015-12-16 14:23:08 -080013 }
14 };
15});