1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 00:12:30 +01:00
Sonarr/UI/Series/SeasonModel.js

26 lines
545 B
JavaScript
Raw Normal View History

'use strict';
define(
[
'backbone'
], function (Backbone) {
return 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 20:13:23 +01:00
});
2013-06-19 03:02:23 +02:00