10 lines
248 B
JavaScript
10 lines
248 B
JavaScript
'use strict';
|
|
|
|
angular.module('bansho.service')
|
|
.directive('banshoServiceLive', function () {
|
|
return {
|
|
restrict: 'E',
|
|
templateUrl: 'components/directive/service/service_live/service_live.html'
|
|
};
|
|
});
|