Added AirDateUtc for UTC offset time

This commit is contained in:
Mark McDowall 2013-07-23 22:28:06 -07:00
commit eb5a15a8ca
18 changed files with 41 additions and 20 deletions

View file

@ -54,7 +54,7 @@ define(
sortable: false
},
{
name : 'airDate',
name : 'airDateUtc',
label: 'Air Date',
cell : AirDateCell
} ,

View file

@ -9,7 +9,7 @@ define(
initialize: function () {
if (this.has('series')) {
var start = Moment(this.get('airDate'));
var start = Moment(this.get('airDateUtc'));
var runtime = this.get('series').get('runtime');
this.set('end', start.add('minutes', runtime));