1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-07-01 00:45:18 +02:00
Files
Sonarr/UI/Series/SeasonModel.js

25 lines
514 B
JavaScript
Raw Normal View History

2013-06-21 23:24:24 -07:00
'use strict';
2013-05-01 15:42:30 -07:00
define(['app'], function () {
2013-03-03 14:42:26 -08:00
NzbDrone.Series.SeasonModel = Backbone.Model.extend({
mutators: {
seasonTitle: function () {
var seasonNumber = this.get('seasonNumber');
if (seasonNumber === 0) {
2013-06-21 23:24:24 -07:00
return 'Specials';
}
2013-06-21 23:24:24 -07:00
return 'Season ' + seasonNumber;
}
},
defaults: {
seasonNumber: 0
}
2013-03-02 11:13:23 -08:00
});
2013-06-18 18:02:23 -07:00
return NzbDrone.Series.SeasonModel;
});