diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-02-26 21:23:20 +0100 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-02-26 21:23:20 +0100 |
commit | 04c9cc60349fe8d6899a42781ccacaf6d9df5bf5 (patch) | |
tree | 6703867e9b45eb36cbcd86e9b7b7d47356f69960 /apps/calendar/js/calendar.js | |
parent | a501d4b61e3ba30aa1643b6a92c5177ee69d3b7d (diff) | |
download | nextcloud-server-04c9cc60349fe8d6899a42781ccacaf6d9df5bf5.tar.gz nextcloud-server-04c9cc60349fe8d6899a42781ccacaf6d9df5bf5.zip |
give users the possibility to choose between monday and sunday as first day of the week
Diffstat (limited to 'apps/calendar/js/calendar.js')
-rw-r--r-- | apps/calendar/js/calendar.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/calendar/js/calendar.js b/apps/calendar/js/calendar.js index 84b76a3c88f..a1b25780b76 100644 --- a/apps/calendar/js/calendar.js +++ b/apps/calendar/js/calendar.js @@ -661,7 +661,7 @@ $(document).ready(function(){ Calendar.UI.initScroll(); $('#calendar_holder').fullCalendar({ header: false, - firstDay: 1, + firstDay: firstDay, editable: true, defaultView: defaultView, timeFormat: { |