mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-27 02:07:41 +00:00
fixed calendar now showing on load.
This commit is contained in:
parent
9722506aca
commit
5c05f6b740
1 changed files with 10 additions and 4 deletions
|
@ -10,7 +10,7 @@ define(['app', 'Calendar/CalendarItemView'], function () {
|
||||||
calendar: '#calendar'
|
calendar: '#calendar'
|
||||||
},
|
},
|
||||||
|
|
||||||
initialize : function () {
|
initialize : function () {
|
||||||
//should use this.collection?
|
//should use this.collection?
|
||||||
this.calendar = new NzbDrone.Calendar.CalendarCollection();
|
this.calendar = new NzbDrone.Calendar.CalendarCollection();
|
||||||
},
|
},
|
||||||
|
@ -57,7 +57,13 @@ define(['app', 'Calendar/CalendarItemView'], function () {
|
||||||
NzbDrone.Calendar.CalendarCollectionView.Instance = this;
|
NzbDrone.Calendar.CalendarCollectionView.Instance = this;
|
||||||
},
|
},
|
||||||
|
|
||||||
getEvents : function (start, end, callback) {
|
|
||||||
|
onShow: function () {
|
||||||
|
this.$('.fc-button-today').click();
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
getEvents: function (start, end, callback) {
|
||||||
var bbView = NzbDrone.Calendar.CalendarCollectionView.Instance;
|
var bbView = NzbDrone.Calendar.CalendarCollectionView.Instance;
|
||||||
|
|
||||||
var startDate = Date.create(start).format(Date.ISO8601_DATETIME);
|
var startDate = Date.create(start).format(Date.ISO8601_DATETIME);
|
||||||
|
@ -66,7 +72,7 @@ define(['app', 'Calendar/CalendarItemView'], function () {
|
||||||
bbView.calendar.fetch({
|
bbView.calendar.fetch({
|
||||||
data : { start: startDate, end: endDate },
|
data : { start: startDate, end: endDate },
|
||||||
success: function (calendarCollection) {
|
success: function (calendarCollection) {
|
||||||
_.each(calendarCollection.models, function(element) {
|
_.each(calendarCollection.models, function (element) {
|
||||||
var episodeTitle = element.get('title');
|
var episodeTitle = element.get('title');
|
||||||
var seriesTitle = element.get('series').title;
|
var seriesTitle = element.get('series').title;
|
||||||
var start = element.get('airDate');
|
var start = element.get('airDate');
|
||||||
|
|
Loading…
Reference in a new issue