You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it's in the condition for omitting change event in the DateTimePicker.prototype._notifyEvent:
//if (e.type === DateTimePicker.Event.CHANGE && e.date && e.date.isSame(e.oldDate) || !e.date && !e.oldDate) {
if (e.type === DateTimePicker.Event.CHANGE && (e.date && e.date.isSame(e.oldDate) || !e.date && !e.oldDate)) {
(the show event doesn't have the date or oldDate params and w/o the added parentheses it trigger the last part of the condition)
clavay
added a commit
to clavay/bootstrap-3
that referenced
this issue
Oct 14, 2019
Hi all
I just note that the show.datetimepicker event and the toggle.datetimepicker event are not firing.
But the hide.datetimepicker is fired normally.
Maybe i do something bad ...
See jsfiddle
https://jsfiddle.net/agbkdzhv/211/
Thanks for the future correction
The text was updated successfully, but these errors were encountered: