robmonie / jquery-week-calendar

Now actively maintained in the following fork - https://github.com/themouette/jquery-week-calendar
388 stars 388 forks source link

Multiday from Saturday to Sunday #37

Open yoghurt1001 opened 13 years ago

yoghurt1001 commented 13 years ago

There seems to be an issue when we try to use a multiday from saturday to sunday. The source-code says

while (start.getDay() < endDay) {

which does nothing when endDay is a sunday - endDay will be 0 and thus the loop will never be performed, because none of the other days is more less than 0.