From 67e87127255a9a6fb57e4247c978c98b8bfe97b2 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Mon, 6 Feb 2012 23:09:02 -0800 Subject: [PATCH] Magic was hiding the progress bar colour. Brute force beats magic. Bears beat beats, Bears beat Battlestar Galactica. --- NzbDrone.Web/Views/Series/Index.cshtml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/NzbDrone.Web/Views/Series/Index.cshtml b/NzbDrone.Web/Views/Series/Index.cshtml index fe00307b2..bcf193da8 100644 --- a/NzbDrone.Web/Views/Series/Index.cshtml +++ b/NzbDrone.Web/Views/Series/Index.cshtml @@ -137,6 +137,10 @@ var progressbar = $(element).progressbar({ value: parseInt($(element).attr("value")) }); + + //Magic was hiding the progress bar color... brute force > magic + progressbar.children('.ui-progressbar-value').css('display', 'block'); + var label = progressbar.find('.progressBarText').clone().width(progressbar.width()); progressbar.find('.ui-progressbar-value').append(label); });