cleaned up mutators

This commit is contained in:
kay.one 2013-06-24 21:51:17 -07:00
parent 8841e43c25
commit 28c93aa947
5 changed files with 11 additions and 33 deletions

View file

@ -1,4 +1,4 @@
'use strict';
'use strict';
define(
[
'backbone',
@ -52,24 +52,13 @@ define(
isContinuing : function () {
return this.get('status') === 'continuing';
},
shortDate : function () {
var date = this.get('nextAiring');
if (!date) {
return '';
}
return Date.create(date).short();
},
route : function () {
return '/series/details/' + this.get('titleSlug');
//return '/series/details/' + this.get('id');
},
qualityProfile: function () {
var profile = QualityProfileCollection.get(this.get('qualityProfileId'));
if (profile) {
return profile.toJSON();
}