For some reason fullcalendar won't display any events that occur after 7PM in the basicDay view. The events show up in month view, but not in basicDay view. Any thoughts would be appreciated.
Here is my code. I have two calendars on the same page. The first one is month view, the second is basicDay view.
$(document).ready(function() {
// page is now ready, initialize the calendar...
$('#calendar').fullCalendar({ weekMode:'variable', events: $.fullCalendar.gcalFeed( "http://www.google.com/calendar/feeds/google_account/public/basic" ), eventClick: function(event) { if (event.url) { window.open(event.url,"_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=750, height=450"); return false; } } });
$('#calendar_min').fullCalendar({ height:193, header:false, defaultView: 'basicDay', events: $.fullCalendar.gcalFeed( "http://www.google.com/calendar/feeds/google_account/public/basic" ), eventClick: function(event) { if (event.url) { window.open(event.url,"_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=750, height=450"); return false; } } }); });