Fixed airdate parsing. Fixed minor UI issues

This commit is contained in:
Mark McDowall 2013-05-13 20:21:37 -07:00
parent 9d96df9c2e
commit e6183b1f83
11 changed files with 31 additions and 65 deletions

View file

@ -10,7 +10,7 @@ Backgrid.SeriesStatusCell = Backgrid.Cell.extend({
if (!monitored) {
this.$el.html('<i class="icon-pause grid-icon" title="Not Monitored"></i>');
}
else if (status === 0) {
else if (status === 'continuing') {
this.$el.html('<i class="icon-play grid-icon" title="Continuing"></i>');
}