angular-date-dropdowns
angular-date-dropdowns copied to clipboard
Date dropdown fields for angular. Main use case is for entering date of birth.
If the month is January, which is assigned to be 0, javascript will evaluate !date.month to true.
I'm using the directive exactly as described, and getting this TypeError. I'm using it within an Ionic app, which could conflict, but shouldn't.
I am having a hard time using this plugin because I am not in UTC. In `validateDate` one makes a new `Date` object. Mine looks like this in my console:...
This fix is needed for the date to be updated in the parent controller
Return the custom date object rather than a javascript date object in the checkDate function. Add months in order rather than reversed. Update the original model on date change. Allow...