mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 16:32:56 +01:00
22 lines
458 B
JavaScript
22 lines
458 B
JavaScript
define(['app'], function () {
|
|
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
|
|
}
|
|
});
|
|
});
|
|
|