You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
473 B
23 lines
473 B
"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
|
|
}
|
|
});
|
|
});
|
|
|