为什么url-tagged事件之间有额外的空间?

时间:2013-04-06 23:00:38

标签: css fullcalendar spacing

我有一个我无法通过的全蛋白间距错误。

以下是我的日历在我的数据中没有链接时的样子

enter image description here

$ticketData[] = array(
                'id' => $ticket->getId(),
                'title' => $title,
                'start' => $ticket->getArrival()->format('Y-m-d'),
                'end' => $ticket->getDeparture()->format('Y-m-d'), 
            );

现在我添加一个网址:

enter image description here

这个奇怪的错误发生在其他人身上吗?我真的迷失了发生了什么。我添加的唯一一行是网址:

$ticketData[] = array(
                'id' => $ticket->getId(),
                'title' => $title,
                'start' => $ticket->getArrival()->format('Y-m-d'),
                'end' => $ticket->getDeparture()->format('Y-m-d'), 
                    'url' => $url
            );

以下是我打电话给日历的方式:

$('#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();
});

1 个答案:

答案 0 :(得分:0)

这几乎肯定是一个CSS问题。我的猜测是你有填充或边距点击这些链接。