New: Progress bar will be yellow if series is not monitored, but epsiodes are missing

This commit is contained in:
Mark McDowall 2014-08-12 16:56:21 -07:00
parent 1464a5d391
commit 457e585300
3 changed files with 10 additions and 18 deletions

View file

@ -54,6 +54,10 @@ define(
return 'progress-bar-success';
}
return 'progress-bar-danger';
if (this.monitored) {
return 'progress-bar-danger';
}
return 'progress-bar-warning';
});
});