修改时缺少全日历轴

fullcalendar axis missing when modified

我对全日历有疑问,当我修改轴时它会消失。这是我的代码:

$(document).ready(function() {

    $('#calendar').fullCalendar({
        header: {
            left: 'prev,next today',
            center: 'title',
            right: 'agendaWeek,agendaDay'
        },

        defaultView: 'agendaWeek',
        allDaySlot: false,
        minTime: "09:15:00",
        maxTime: "18:15:00",
        slotDuration: "00:60:01",
    });

});

哪个显示 this calendar

但我在 JSFiddle 上使用了完全相同的代码,它确实显示了轴!!

有什么地方出错了吗?

谢谢。

对于遇到此问题的其他人

这是一个已知错误https://github.com/fullcalendar/fullcalendar/issues/2786

针对此问题提供了 "ugly" 解决方法。