salix/client/agency/src/zone/calendar/index.js

21 lines
366 B
JavaScript
Raw Normal View History

2018-09-24 12:51:27 +00:00
import ngModule from '../../module';
class Controller {
constructor($scope) {
this.$scope = $scope;
}
}
Controller.$inject = ['$scope'];
ngModule.component('vnZoneCalendar', {
template: require('./index.html'),
controller: Controller,
require: {
catalog: '^vnZoneDeliveryDay'
},
bindings: {
zone: '<'
}
});