diff --git a/views/series.tpl b/views/series.tpl index c14c6b834..5ebf1b494 100644 --- a/views/series.tpl +++ b/views/series.tpl @@ -287,10 +287,11 @@ $( ".progress" ).each(function() { if ($(this).progress('is complete') != true) { - $(this).progress('set warning'); + $(this).addClass('yellow'); } if ($(this).progress('get total') == 0) { - $(this).progress('set success'); + $(this).progress('update progress', '99'); + $(this).addClass('grey disabled'); $(this).progress('set bar label', '0 / 0'); } });