Results 1 comments of zhenyi

Just move the ngModel.$setViewValue() and ngModel.$render() functions into the 'apply.daterangepicker' callback function. Like this: ``` $element.on('apply.daterangepicker', function(ev, picker) { console.log("Applied"); ngModel.$setViewValue({ 'startDate': picker.startDate, 'endDate': picker.endDate }); ngModel.$render(); }); ```