salix/client/agency/src/zone/delivery-day/index.js

22 lines
360 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('vnZoneDeliveryDay', {
template: require('./index.html'),
controller: Controller,
bindings: {
zone: '<'
},
require: {
card: '^vnZoneCard'
}
});