From a4dc553ca5ec4514f499cff1b5f4319fad44615f Mon Sep 17 00:00:00 2001 From: Doug Patti Date: Sun, 29 Jul 2012 04:05:54 -0400 Subject: [PATCH] Set the bar's width as a % instead of pixels --- js/upload.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/upload.js b/js/upload.js index 66e9472..c6e2943 100644 --- a/js/upload.js +++ b/js/upload.js @@ -61,7 +61,7 @@ $(function(){ }, progressUpdated: function(i, file, progress) { - $.data(file).find('.progress').width(progress); + $.data(file).find('.progress').width(progress + "%"); } });