We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
when the functions picker.minDate and picker.maxDate are called without argument, a check for existance is missing:
minDate, maxDate line 1256, 1283: return options.minDate.clone();
return options.minDate.clone();
This should be done like here:
defaultDate, line 1310 return options.defaultDate ? options.defaultDate.clone() : options.defaultDate;
return options.defaultDate ? options.defaultDate.clone() : options.defaultDate;
sorry for no jsfiddle, but this is quite obvious.
The text was updated successfully, but these errors were encountered:
I'll get it fixed. Thanks
Sorry, something went wrong.
v4! It lives!
175ba28
Fixes #747, #742, #726, #696, #695, #677
Please check the latest, it should be fixed
It's fixed, thx!
No branches or pull requests
when the functions picker.minDate and picker.maxDate are called without argument, a check for existance is missing:
minDate, maxDate line 1256, 1283:
return options.minDate.clone();
This should be done like here:
defaultDate, line 1310
return options.defaultDate ? options.defaultDate.clone() : options.defaultDate;
sorry for no jsfiddle, but this is quite obvious.
The text was updated successfully, but these errors were encountered: