aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2016-06-28 13:44:32 +0200
committerMario Vavti <mario@mariovavti.com>2016-06-28 13:44:32 +0200
commit7b2d54dffac5a5ee3c0ff79aee964ac0869b3142 (patch)
tree65e6b3b269abdd1f4e91060b118fb927493e8439
parentaff58934c0c33ad9bf68c0a3b3a0a224fee978ef (diff)
downloadvolse-hubzilla-7b2d54dffac5a5ee3c0ff79aee964ac0869b3142.tar.gz
volse-hubzilla-7b2d54dffac5a5ee3c0ff79aee964ac0869b3142.tar.bz2
volse-hubzilla-7b2d54dffac5a5ee3c0ff79aee964ac0869b3142.zip
fix month view in fullscreen mode
-rwxr-xr-xview/tpl/event_head.tpl8
1 files changed, 7 insertions, 1 deletions
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);
}