Merge pull request #5 from dpatti/width-fix
Set the bar's width as a % instead of pixels
This commit is contained in:
commit
915eeae06d
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ $(function(){
|
||||||
},
|
},
|
||||||
|
|
||||||
progressUpdated: function(i, file, progress) {
|
progressUpdated: function(i, file, progress) {
|
||||||
$.data(file).find('.progress').width(progress);
|
$.data(file).find('.progress').width(progress + "%");
|
||||||
}
|
}
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue