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
From: http://amsul.ca/pickadate.js/date.htm#first-weekday
Months to reproduce - Sep 2013, Dec 2013 ...
My fast-fix: https://github.com/amsul/pickadate.js/blob/gh-pages/lib/picker.date.js#L193
day: isInfiniteValue || value.getDay(),
->
day: isInfiniteValue || value.getDay() || (calendar.settings.firstDay ? 7 : 0),
The text was updated successfully, but these errors were encountered:
👍 this solves my issue as well.
Sorry, something went wrong.
Thanks for pointing it out. Your solution should work fine for the basic cases - however it may not work in validating if a date is disabled or not.
I’ve added an alternate fix to the edge branch to merge in soon..
Cheers :)
e5783ed
@amsul that is why it is called "fast-fix" :)
Thanks for the proper fix.
No branches or pull requests
From: http://amsul.ca/pickadate.js/date.htm#first-weekday
Months to reproduce - Sep 2013, Dec 2013 ...
My fast-fix:
https://github.com/amsul/pickadate.js/blob/gh-pages/lib/picker.date.js#L193
->
The text was updated successfully, but these errors were encountered: