beenote / angular-material-datetimepicker

Date time picker for Angular Material JS
https://beenote.github.io/angular-material-datetimepicker
MIT License
44 stars 31 forks source link

fix: BREAKING: Reliance on prebound constructor #81

Closed oliversalzburg closed 4 years ago

oliversalzburg commented 4 years ago

Later AngularJS versions introduced a change that made it impossible to access bindings before construction has finalized. Relevant code has to be moved to the $onInit lifecycle hook.

Compatibility existed in prior versions, but has now been removed, breaking this module.

This constitutes a breaking change, because the $onInit lifecycle hook did not exist in very old versions (<1.4?) of AngularJS.

Fixes #80