From 492761282523d5db2b72f6d12ac6ad1d588afa70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20V=C3=A9zina?= <5130500+morpheus65535@users.noreply.github.com> Date: Tue, 24 Apr 2018 17:16:01 -0400 Subject: [PATCH] Series progress fine-tuning --- views/series.tpl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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'); } });