This seems to be a jQuery bug regarding percent animation.
It is referenced here , but marked as a fixed value for 1.7 - it appears in 1.8.3 as changing the jQuery version to 1.6.4 or 1.7.2 in your violin will make it work as expected.
In addition, the conversion to pixels works as expected: http://jsfiddle.net/dv4Hd/24/
// Must include code when linking to fiddle var $progressBar = $('#render-progress .bar'); var percentIncrease = 0.50; var parentWidth = $('.progress').width(); var increasePx = parentWidth * percentIncrease; $progressBar.animate({width:increasePx}, 2000)
I will search the queue to make sure the report is not active yet, and send it this week if not.
source share