1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-27 10:19:41 +00:00
Radarr/UI/Calendar/CalendarCollection.js
Mark McDowall e37f413e19 Default sort ordering.
Upcoming won't obey the comparator though.
2013-06-05 20:03:04 -07:00

13 lines
No EOL
433 B
JavaScript

"use strict";
define(['app', 'Series/EpisodeModel'], function () {
NzbDrone.Calendar.CalendarCollection = Backbone.Collection.extend({
url : NzbDrone.Constants.ApiRoot + '/calendar',
model : NzbDrone.Series.EpisodeModel,
comparator: function(model) {
var date = new Date(model.get('airDate'));
var time = date.getTime();
return time;
}
});
});