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
{{ message }}
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.
I came here looking for the same thing, I ended up putting in an ugly hack, but it works for me so you can try it and see if it works for you (anyone else coming here looking for this).
I replaced
blur: $.proxy(function (e) {
this.hide();
this.triggerChangeDate();
}, this),
with
blur: $.proxy(function (e) {
//HACK I added this as IE 9 wouldnt clear once a value was in there
if (this.element[0].value == "") {
this.moment = null;
}
this.hide();
this.triggerChangeDate();
}, this),
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Note: this problem does not exist in IE10 or Chrome,
Setting an initial date, then clicking in an input... highlight all.... delete, then tab out. The empty input will revert to the original date.
The text was updated successfully, but these errors were encountered: