Radarr/UI/Series/SeasonModel.js

23 lines
473 B
JavaScript
Raw Normal View History

2013-05-01 22:42:30 +00:00
"use strict";
define(['app'], function () {
2013-03-03 22:42:26 +00: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 19:13:23 +00:00
});
});