Issue 2322: Missing one day at event end
Status:  Done
Owner: ----
Closed:  Nov 2014
Reported by sl.bug...@gmail.com, Oct 19, 2014
here is example http://jsfiddle.net/nfgttg14/1/

it renders from 2 Oct to 4 Oct, should end on 5 Oct.
Oct 19, 2014
#1 sl.bug...@gmail.com
I think issue in method computeDayRange on condition if (endTimeMS && endTimeMS >= nextDayThreshold)

for my case endTimeMS is 0 and (endTimeMS >= nextDayThreshold) is true. result of this statement is 0 and 0 casted to false.

console.log(endTimeMS); // 0
console.log(nextDayThreshold); // Duration - 0
console.log(endTimeMS && endTimeMS >= nextDayThreshold); // 0
Oct 30, 2014
Project Member #2 adamrs...@gmail.com
(No comment was entered for this change.)
Status: Reproducing
Labels: Type-Bug
Nov 25, 2014
Project Member #3 adamrs...@gmail.com
when specifying end date, it is supposed to be exclusive:
http://fullcalendar.io/docs/event_data/Event_Object/

so things are working as intended. solution for you is to have your end dates be one day more.
Status: Done