aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/event_head.tpl
diff options
context:
space:
mode:
authorAndrew Manning <tamanning@zoho.com>2016-07-01 06:36:25 -0400
committerAndrew Manning <tamanning@zoho.com>2016-07-01 06:36:25 -0400
commit0630609d6e60085f20d1430fd4044775dd9af5e9 (patch)
tree2556d3a10cf6328dbed962060888f74584b791db /view/tpl/event_head.tpl
parent205924ff294e5c0d9c57ed9a36dc899fcdd9c460 (diff)
parent7371e0862543922b65eac920e128ca4ef1348b13 (diff)
downloadvolse-hubzilla-0630609d6e60085f20d1430fd4044775dd9af5e9.tar.gz
volse-hubzilla-0630609d6e60085f20d1430fd4044775dd9af5e9.tar.bz2
volse-hubzilla-0630609d6e60085f20d1430fd4044775dd9af5e9.zip
Merge remote-tracking branch 'upstream/dev' into wiki
Diffstat (limited to 'view/tpl/event_head.tpl')
-rwxr-xr-xview/tpl/event_head.tpl14
1 files changed, 7 insertions, 7 deletions
diff --git a/view/tpl/event_head.tpl b/view/tpl/event_head.tpl
index 4397c5c9d..fee4f17a3 100755
--- a/view/tpl/event_head.tpl
+++ b/view/tpl/event_head.tpl
@@ -30,18 +30,18 @@
function changeView(action, viewName) {
$('#events-calendar').fullCalendar(action, viewName);
var view = $('#events-calendar').fullCalendar('getView');
- if(view.type === 'agendaDay' || view.type === 'agendaWeek') {
+
+ if(view.type !== 'month' && !$('main').hasClass('fullscreen')) {
$('#events-calendar').fullCalendar('option', 'height', 'auto');
}
else {
- 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
+ $('#events-calendar').fullCalendar('option', 'height', '');
+ }
- }
- else {
- $('#calendar').fullCalendar('option', 'height', '');
- }
+ if($('main').hasClass('fullscreen')) {
+ $('#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
}
+
$('#title').text(view.title);
}