From 7b2d54dffac5a5ee3c0ff79aee964ac0869b3142 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 28 Jun 2016 13:44:32 +0200 Subject: fix month view in fullscreen mode --- view/tpl/event_head.tpl | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/view/tpl/event_head.tpl b/view/tpl/event_head.tpl index 762bdcbb8..4397c5c9d 100755 --- a/view/tpl/event_head.tpl +++ b/view/tpl/event_head.tpl @@ -34,7 +34,13 @@ $('#events-calendar').fullCalendar('option', 'height', 'auto'); } else { - $('#events-calendar').fullCalendar('option', 'height', ''); + if($('main').hasClass('fullscreen')) { + $('#calendar').fullCalendar('option', 'height', $(window).height() - $('.section-title-wrapper').outerHeight(true) - 2); // -2 is for border width (.generic-content-wrapper top and bottom) of .generic-content-wrapper + + } + else { + $('#calendar').fullCalendar('option', 'height', ''); + } } $('#title').text(view.title); } -- cgit v1.2.3