1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Calendar/UpcomingCollection.js

13 lines
433 B
JavaScript
Raw Normal View History

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