I have a fullcalander spacing bug that I can't get past.Here is what my calendar looks like when my data doesn't have links in it
\[code\]$ticketData[] = array( 'id' => $ticket->getId(), 'title' => $title, 'start' => $ticket->getArrival()->format('Y-m-d'), 'end' => $ticket->getDeparture()->format('Y-m-d'), );\[/code\]Now when I add a URL:
Has this weird bug happened to anyone else? I'm really lost as to what's going on. The only line I added was the url:\[code\]$ticketData[] = array( 'id' => $ticket->getId(), 'title' => $title, 'start' => $ticket->getArrival()->format('Y-m-d'), 'end' => $ticket->getDeparture()->format('Y-m-d'), 'url' => $url );\[/code\]Here is how I'm calling the calender:\[code\]$('#calendar').fullCalendar({ editable: false, header: { left: 'prev,next today', center: 'title', right: 'month,agendaWeek,agendaDay' }, events: data_url, loading: function(bool) { if (bool) $('#loading').show(); else $('#loading').hide(); } });\[/code\]