1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-03-04 02:18:06 +00:00
Lidarr/UI/Series/SeasonModel.js

23 lines
473 B
JavaScript
Raw Normal View History

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