mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
14 lines
326 B
JavaScript
14 lines
326 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'backbone',
|
|
'Series/SeasonModel'
|
|
], function (Backbone, SeasonModel) {
|
|
return Backbone.Collection.extend({
|
|
model: SeasonModel,
|
|
|
|
comparator: function (season) {
|
|
return -season.get('seasonNumber');
|
|
}
|
|
});
|
|
});
|