diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-07-01 12:21:19 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-07-01 12:21:19 +0200 |
commit | 7371e0862543922b65eac920e128ca4ef1348b13 (patch) | |
tree | 52f36b09ceead535beac452f6f2d650d4c531bc5 /view/js | |
parent | bb5ec8cfb89bc5cc1532ffacee22e21aa9415e23 (diff) | |
download | volse-hubzilla-7371e0862543922b65eac920e128ca4ef1348b13.tar.gz volse-hubzilla-7371e0862543922b65eac920e128ca4ef1348b13.tar.bz2 volse-hubzilla-7371e0862543922b65eac920e128ca4ef1348b13.zip |
ditch the change_view widget and make header fixed in fullscreen mode
Diffstat (limited to 'view/js')
-rw-r--r-- | view/js/mod_events.js | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/view/js/mod_events.js b/view/js/mod_events.js index 66cf81ddd..a507a84d7 100644 --- a/view/js/mod_events.js +++ b/view/js/mod_events.js @@ -19,15 +19,10 @@ function enableDisableFinishDate() { } function on_fullscreen() { - var view = $('#events-calendar').fullCalendar('getView'); - if(view.type === 'month') { - $('#events-calendar').fullCalendar('option', 'height', $(window).height() - $('.section-title-wrapper').outerHeight(true) - 2); // -2 is for border width (top and bottom) of .generic-content-wrapper - } + $('#events-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 } function on_inline() { var view = $('#events-calendar').fullCalendar('getView'); - if(view.type === 'month') { - $('#events-calendar').fullCalendar('option', 'height', ''); - } + ((view.type === 'month') ? $('#events-calendar').fullCalendar('option', 'height', '') : $('#events-calendar').fullCalendar('option', 'height', 'auto')); } |