21 lines
366 B
JavaScript
21 lines
366 B
JavaScript
|
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: '<'
|
||
|
}
|
||
|
});
|