1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-07-05 00:49:20 +02:00
Files
Sonarr/UI/Calendar/CalendarCollection.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 () {
NzbDrone.Calendar.CalendarCollection = 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
}
});
});