Skip to content

Commit

Permalink
1.2.1 tested patches, modified docs
Browse files Browse the repository at this point in the history
  • Loading branch information
arshaw committed Jun 30, 2009
1 parent 9a06943 commit 2acacf8
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
8 changes: 8 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
!!!!!!!!!!!

7 changes: 5 additions & 2 deletions docs/index.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 <EventSources>`).

Expand Down
3 changes: 2 additions & 1 deletion fullcalendar/fullcalendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -494,8 +494,9 @@

ignoreResizes = false;

if (options.monthDisplay)
if (options.monthDisplay) {
options.monthDisplay(date.getFullYear(), date.getMonth(), monthTitle);
}

}

Expand Down
1 change: 1 addition & 0 deletions test/sources.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<script type='text/javascript' src='legacy_jquery/ui.core.js'></script>
<script type='text/javascript' src='legacy_jquery/ui.draggable.js'></script>
-->

<script type='text/javascript' src='../jquery/jquery.js'></script>
<script type='text/javascript' src='../jquery/ui.core.js'></script>
<script type='text/javascript' src='../jquery/ui.draggable.js'></script>
Expand Down

0 comments on commit 2acacf8

Please sign in to comment.