T00rk / bootstrap-material-datetimepicker

Datepicker for bootstrap-material
http://t00rk.github.io/bootstrap-material-datetimepicker/
MIT License
9 stars 4 forks source link

js error with the now button #209

Open harryshepard opened 6 years ago

harryshepard commented 6 years ago

Uncaught TypeError: Cannot read property 'setAttribute' of undefined at s.animateHands (bootstrap-material-datetimepicker-mdb4.min.js:1) at s._onNowClick (bootstrap-material-datetimepicker-mdb4.min.js:1) at HTMLButtonElement.dispatch (jquery-3.3.1.min.js:2) at HTMLButtonElement.y.handle (jquery-3.3.1.min.js:2)

This happens if you press now while not on the clock view. I fixed by wrapping the animateHands functions in the _onNowClick with

if(this.currentView === 1 || this.currentView === 2) { this.animateHands(); }