1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-14 15:03:42 +01:00
Radarr/NzbDrone.Backbone/Series/Details/SeasonModel.js

22 lines
466 B
JavaScript
Raw Normal View History

define(['app'], function () {
2013-03-02 20:13:23 +01:00
NzbDrone.Series.Details.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
});
});