mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-10 04:52:42 +01:00
769331d45d
single quotes
25 lines
514 B
JavaScript
25 lines
514 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
|
|
}
|
|
});
|
|
|
|
return NzbDrone.Series.SeasonModel;
|
|
});
|
|
|