Vincent Fournier c7c793b699 Improve application configuration
Change-Id: Ic689dee2b15ace091a4e61995d3c64641660b899
2015-07-29 14:31:06 -04:00

13 lines
351 B
JavaScript

'use strict';
angular.module('bansho.service')
.directive('banshoServiceMain', function () {
return {
restrict: 'E',
templateUrl: 'components/directive/service/service_main/service_main.html',
link: function (scope) {
scope.param = scope.$parent.param;
}
};
});