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 was archived by the owner on Feb 14, 2019. It is now read-only.
The wrong month has the class "active". It is always the second month before the one that is the actual current one. For example, right now in July, by default the month of May will be the one highlighted with the class "active". If you pick a date in November and go back to the datepicker year view, September will be highlighted.
The text was updated successfully, but these errors were encountered:
The bug is on line 676. A wrong selector pushes the arrows 'prev' and 'next' inside the 'months' object
Change:
.find('span').removeClass('active');
to:
.find('.month').removeClass('active');
The wrong month has the class "active". It is always the second month before the one that is the actual current one. For example, right now in July, by default the month of May will be the one highlighted with the class "active". If you pick a date in November and go back to the datepicker year view, September will be highlighted.
The text was updated successfully, but these errors were encountered: