1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00
Sonarr/UI/Calendar/UpcomingCollection.js

13 lines
433 B
JavaScript
Raw Normal View History

2013-03-30 12:30:00 -07:00
"use strict";
2013-04-30 18:54:15 -07:00
define(['app', 'Series/EpisodeModel'], function () {
2013-06-06 22:33:01 -07:00
NzbDrone.Calendar.UpcomingCollection = Backbone.Collection.extend({
url : NzbDrone.Constants.ApiRoot + '/calendar',
2013-04-30 18:54:15 -07:00
model : NzbDrone.Series.EpisodeModel,
comparator: function(model) {
var date = new Date(model.get('airDate'));
var time = date.getTime();
return time;
2013-02-28 08:34:18 -08:00
}
});
});