diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-06-16 12:21:59 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-06-16 12:21:59 +0200 |
commit | 8924f94d05fcbe6a34bb46d7bb4b2ba63ac78da2 (patch) | |
tree | 54228f43ab23ee3426f176b7f09e24bc8d71549c /view/js/mod_cal.js | |
parent | 7baa20d55901e42f57fa73c8473fd0f3ddf3a94d (diff) | |
download | volse-hubzilla-8924f94d05fcbe6a34bb46d7bb4b2ba63ac78da2.tar.gz volse-hubzilla-8924f94d05fcbe6a34bb46d7bb4b2ba63ac78da2.tar.bz2 volse-hubzilla-8924f94d05fcbe6a34bb46d7bb4b2ba63ac78da2.zip |
show month view in full height in fullscreen view
Diffstat (limited to 'view/js/mod_cal.js')
-rw-r--r-- | view/js/mod_cal.js | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/view/js/mod_cal.js b/view/js/mod_cal.js new file mode 100644 index 000000000..0bf97fcf7 --- /dev/null +++ b/view/js/mod_cal.js @@ -0,0 +1,22 @@ +/** + * JavaScript for mod/cal + */ + +$(document).ready( function() { + $(document).on('click','#fullscreen-btn', on_fullscreen); + $(document).on('click','#inline-btn', on_inline); +}); + +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 + } +} + +function on_inline() { + var view = $('#events-calendar').fullCalendar('getView'); + if(view.type === 'month') { + $('#events-calendar').fullCalendar('option', 'height', 'auto'); + } +} |