Paul-DS / bootstrap-year-calendar

[DEPRECATED] A fully customizable year calendar widget, for boostrap !
Apache License 2.0
293 stars 243 forks source link

Missing Days when month ends on weekStart #187

Open nkuglien opened 6 years ago

nkuglien commented 6 years ago

When the final day of a month is a weekStart the pluging doesnt show that day. The error is at the line 234

" while (currentDate < lastDate) {"

that line should be

" while (currentDate <= lastDate) {"

so the error is fixed..

Thanks