I have an implementation of full calendar pulling a Google Calendar feed for a Community Ice Rink. Everything seems to be working fine except the last two events of the week are missing from 7:00PM on on Saturday. I have tried deleting the events, adding a different event. Renaming events, removing other events to see if there are too many. The XML feed is valid. I don't know what else to do. There is not a javascript error.
This is the URL for the Calendar:
and this is the code that I am using:
$(function() {
$('#fullcal').fullCalendar({
events: $.fullCalendar.gcalFeed('http://www.google.com/calendar/feeds/0vf900bq0u01v826rjvirb02b4%40group.calendar.google.com/public/basic',
{
// put your options here
className: 'gcal-event',
currentTimezone: 'America/Denver'
}
),
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
defaultView: 'agendaWeek',
eventClick: function(event) {
window.open(event.url, 'gcalevent', 'width=700,height=600');
return false;
},
loading: function(bool) {
if (bool) {
$('#loading').show();
}else{
$('#loading').hide();
}
}
}); });