Matteo Scandolo | 896bb7b | 2016-05-06 14:10:11 -0700 | [diff] [blame^] | 1 | (function () { |
2 | 'use strict'; | ||||
3 | |||||
4 | angular.module('xos.serviceGrid') | ||||
5 | .directive('serviceGraph', function(){ | ||||
6 | return { | ||||
7 | restrict: 'E', | ||||
8 | scope: {}, | ||||
9 | bindToController: true, | ||||
10 | controllerAs: 'vm', | ||||
11 | templateUrl: 'templates/service-graph.tpl.html', | ||||
12 | controller: function(){ | ||||
13 | |||||
14 | } | ||||
15 | }; | ||||
16 | }) | ||||
17 | })(); |