restorando / angular-pickadate

A simple and fluid inline datepicker for AngularJS with no extra dependencies.
MIT License
273 stars 91 forks source link

pickadate-special class and TypeError fix #88

Open evancarey opened 7 years ago

evancarey commented 7 years ago

I had a requirement to highlight a set of dates with custom css. Using the disabled dates feature as a guide a function can be passed to the directive that can trigger the addition of a pickadate-special class to the dates.

Also, fixed 'TypeError:dateString.split is not a function' errors that can occur when the ngModel.$viewValue is undefined and subsequent calls to parseDate would be made with a previously built date object (instead of a string) taken from selectedDates[0] which in my case would occur if the user refreshed the application and subsequent digest cycles executed before the view model was replenished with data.