mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
23 lines
473 B
JavaScript
23 lines
473 B
JavaScript
"use strict";
|
|
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
|
|
}
|
|
});
|
|
});
|
|
|