1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-13 22:43:35 +01:00
Radarr/UI/Series/SeasonModel.js

22 lines
459 B
JavaScript
Raw Normal View History

define(['app'], function () {
2013-03-03 23:42:26 +01:00
NzbDrone.Series.SeasonModel = Backbone.Model.extend({
mutators: {
seasonTitle: function () {
var seasonNumber = this.get('seasonNumber');
if (seasonNumber === 0) {
return "Specials";
}
return "Season " + seasonNumber;
}
},
defaults: {
seasonNumber: 0
}
2013-03-02 20:13:23 +01:00
});
});