diff --git a/apps/calendar/js/calendar.js b/apps/calendar/js/calendar.js index 876465a0e53..f8456c9bc08 100644 --- a/apps/calendar/js/calendar.js +++ b/apps/calendar/js/calendar.js @@ -662,9 +662,21 @@ $(document).ready(function(){ header: false, firstDay: 1, editable: true, + defaultView: defaultView, + timeFormat: { + agenda: 'HH:mm{ - HH:mm}', + '': 'HH:mm' + }, + axisFormat: 'HH:mm', + monthNames: monthNames, + monthNamesShort: monthNamesShort, + dayNames: dayNames, + dayNamesShort: dayNamesShort, + allDayText: allDayText, eventSources: eventSources, viewDisplay: function(view) { $('#datecontrol_date').html(view.title); + $.get(OC.filePath('calendar', 'ajax', 'changeview.php') + "?v="+view.name); } }); $('#oneweekview_radio').click(function(){ diff --git a/apps/calendar/templates/calendar.php b/apps/calendar/templates/calendar.php index d09a5d45a1a..58f61661ce3 100644 --- a/apps/calendar/templates/calendar.php +++ b/apps/calendar/templates/calendar.php @@ -1,5 +1,11 @@