1
0
Fork 0

Merge pull request #5 from dpatti/width-fix

Set the bar's width as a % instead of pixels
This commit is contained in:
Andrew Tomaka 2012-07-30 19:04:41 -07:00
commit 915eeae06d
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ $(function(){
},
progressUpdated: function(i, file, progress) {
$.data(file).find('.progress').width(progress);
$.data(file).find('.progress').width(progress + "%");
}
});