Fixed FullCalendar height was not calculated dynamically (fixes #549)

This commit is contained in:
Bernd Bestel
2020-02-09 15:24:05 +01:00
parent 3af5bd8e29
commit e9f55de987
3 changed files with 5 additions and 2 deletions

View File

@@ -14,7 +14,8 @@ var calendar = $("#calendar").fullCalendar({
"weekNumbers": Grocy.CalendarShowWeekNumbers,
"defaultView": ($(window).width() < 768) ? "agendaDay" : "month",
"firstDay": firstDay,
"eventLimit": true,
"eventLimit": false,
"height": "auto",
"eventSources": fullcalendarEventSources
});

View File

@@ -18,10 +18,11 @@ var calendar = $("#calendar").fullCalendar({
"right": "prev,today,next"
},
"weekNumbers": false,
"eventLimit": true,
"eventLimit": false,
"eventSources": fullcalendarEventSources,
"defaultView": ($(window).width() < 768) ? "basicDay" : "basicWeek",
"firstDay": firstDay,
"height": "auto",
"viewRender": function(view)
{
if (firstRender)