2013-06-22 09:24:24 +03:00
|
|
|
'use strict';
|
2013-05-02 01:42:30 +03:00
|
|
|
define(['app'], function () {
|
2013-03-04 01:42:26 +03:00
|
|
|
NzbDrone.Series.SeasonModel = Backbone.Model.extend({
|
2013-03-04 01:26:41 +03:00
|
|
|
|
|
|
|
mutators: {
|
|
|
|
seasonTitle: function () {
|
|
|
|
var seasonNumber = this.get('seasonNumber');
|
|
|
|
|
|
|
|
if (seasonNumber === 0) {
|
2013-06-22 09:24:24 +03:00
|
|
|
return 'Specials';
|
2013-03-04 01:26:41 +03:00
|
|
|
}
|
|
|
|
|
2013-06-22 09:24:24 +03:00
|
|
|
return 'Season ' + seasonNumber;
|
2013-03-04 01:26:41 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
defaults: {
|
|
|
|
seasonNumber: 0
|
|
|
|
}
|
2013-03-02 22:13:23 +03:00
|
|
|
});
|
2013-06-19 04:02:23 +03:00
|
|
|
|
|
|
|
return NzbDrone.Series.SeasonModel;
|
2013-03-04 01:26:41 +03:00
|
|
|
});
|
|
|
|
|