blob: f6fb4d61d28c89bf9634f063e462fd18ca4404f4 [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',
9 controller: () => {
10
11 }
12 };
13});