indrimuska / angular-moment-picker

Angular Moment Picker is an AngularJS directive for date and time picker using Moment.js.
http://indrimuska.github.io/angular-moment-picker/
MIT License
527 stars 229 forks source link

Hours and minutes pickers don't close in Chrome. #263

Closed n3nikita closed 5 years ago

n3nikita commented 5 years ago

When I click the picker first time to choose hours, it opens hour-view, then I click second time, It opens minutes-view but hours-view still there, it doesn't disappear.

<input name="startHour" min-view="decade" max-view="hour" show-header="false" type="text" ng-model="event.startHour" placeholder="text" moment-picker="event.startHour" format="HH:mm" max-date="event.endHour" required/>

I got this error only in Chrome.

First click: image

Second click: image

n3nikita commented 5 years ago

It was error with $scope.$watchCollection (only in Chrome), after fixing it, error with moment-picker disappeared.