Added tooltip to airdate on posters view

This commit is contained in:
Mark McDowall 2013-04-24 17:23:07 -07:00
parent c3de0006ff
commit 32701d5e84
4 changed files with 27 additions and 5 deletions

View file

@ -58,6 +58,15 @@
}
return 'Ended';
},
shortDate: function () {
var date = this.get('nextAiring');
if (!date) {
return '';
}
return Date.create(date).short();
}
},