1
0
Fork 0

Set the bar's width as a % instead of pixels

This commit is contained in:
Doug Patti 2012-07-29 04:05:54 -04:00
parent c4ab3d53c5
commit a4dc553ca5
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 + "%");
}
});