diff --git a/changelog.txt b/changelog.txt index b369c73..5ef9993 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,11 @@ +version 1.2.1 (6/29/09) + - bugfixes + - allows and corrects invalid end dates for events + - doesn't throw an error in IE while rendering when display:none + - fixed 'loading' callback when used w/ multiple addEventSource calls + - gcal className can now be an array + version 1.2 (5/31/09) - expanded API - 'className' CalEvent attribute @@ -48,3 +55,4 @@ version 1.1 (5/10/09) - for THEAD and TBODY (in 1.0, just used TBODY, restructured in 1.1) - IF UPGRADING FROM FULLCALENDAR 1.0, YOU MUST UPGRADE FULLCALENDAR.CSS !!!!!!!!!!! + diff --git a/docs/index.txt b/docs/index.txt index 97efcaf..09f7b37 100644 --- a/docs/index.txt +++ b/docs/index.txt @@ -257,8 +257,11 @@ CalEvent: UNIX timestamp. **end**: date (optional) - A javascript Date object indicating the date/time an event ends - (exclusively). If an event has an ambiguous end time, ``end`` should be + A javascript Date object indicating the date/time an event ends. This is + an **exclusive** value!!! **Example:** if an event spans two whole days, + ``end`` must be the time 00:00:00 of the *third* day. + + If an event has an ambiguous end time, ``end`` should be set to midnight of the next day. This is implied if ``end`` is omitted. (For convenience with an :ref:`Event Source `). diff --git a/fullcalendar/fullcalendar.js b/fullcalendar/fullcalendar.js index 600dae6..d8d26eb 100644 --- a/fullcalendar/fullcalendar.js +++ b/fullcalendar/fullcalendar.js @@ -494,8 +494,9 @@ ignoreResizes = false; - if (options.monthDisplay) + if (options.monthDisplay) { options.monthDisplay(date.getFullYear(), date.getMonth(), monthTitle); + } } diff --git a/test/sources.html b/test/sources.html index 2d11848..dc19406 100644 --- a/test/sources.html +++ b/test/sources.html @@ -21,6 +21,7 @@ --> +