why is there extra space between url-tagged events?
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 $ticketData[] = array( 'id' => $ticket->getId(), 'title' => $title, 'start' => $ticket->getArrival()->format('Y-m-d'), 'end' => $ticket->getDeparture()->format('Y-m-d'), ); 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: $ticketData[] = array( 'id' => $ticket->getId(), 'title' => $title, 'start' => $ticket->getArrival()->format('Y-m-d'), 'end' => $ticket->getDeparture()-