1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-18 21:35:27 -04:00

Calendar defaults to week view

This commit is contained in:
Mark McDowall
2013-06-06 18:46:16 -07:00
parent 64d87d7a68
commit 1fb944976e
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -16,6 +16,7 @@ define(['app', 'Calendar/CalendarItemView'], function () {
},
onCompositeCollectionRendered: function () {
$(this.ui.calendar).empty().fullCalendar({
defaultView : 'basicWeek',
allDayDefault : false,
ignoreTimezone: false,
weekMode : 'variable',
+1 -1
View File
@@ -20,5 +20,5 @@ Handlebars.registerHelper("debug", function(optionalValue) {
});
Handlebars.registerHelper("fileSize", function(size) {
return size.bytes();
return size.bytes(1);
});