blob: 0f9c05ce7138b96eddf0867885737b6f7111a5cc [file] [log] [blame]
Matteo Scandolo70bc45f2016-05-06 14:10:11 -07001(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})();