Moved FC properties out of episode model

This commit is contained in:
Mark McDowall 2013-05-01 00:33:34 -07:00
parent 17941f5b39
commit db8912e5b7
2 changed files with 5 additions and 9 deletions

View file

@ -9,9 +9,6 @@ define(['app'], function () {
paddedEpisodeNumber: function () {
return this.get('episodeNumber');
},
allDay : function () {
return false;
},
day : function () {
return Date.create(this.get('airDate')).format('{dd}');
},
@ -27,12 +24,6 @@ define(['app'], function () {
return start.format('{h}.{mm}{tt}');
},
start : function () {
return this.get('airDate');
},
end : function () {
return this.get('endTime');
},
statusLevel : function () {
var status = this.get('status');
var currentTime = Date.create();