Really fixed the progress bar, brute force fail.

This commit is contained in:
Mark McDowall 2012-02-06 23:38:31 -08:00
parent 2000d07180
commit 04fdb130b8
1 changed files with 1 additions and 4 deletions

View File

@ -135,12 +135,9 @@
var element = this;
var progressbar = $(element).progressbar({
value: parseInt($(element).attr("value"))
value: parseInt($(element).attr("rel"))
});
//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);
});