You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
542 B
26 lines
542 B
'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
|
|
}
|
|
});
|
|
});
|
|
|