13 lines
351 B
JavaScript
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;
|
|
}
|
|
};
|
|
});
|