Removed global progress bar

This commit is contained in:
Pierre-Olivier Latour
2014-04-01 13:19:03 -07:00
parent 22d12406c8
commit 73ff754de4
3 changed files with 18 additions and 40 deletions
@@ -146,15 +146,9 @@ $(document).ready(function() {
dataType: 'json',
start: function(e) {
$("#progress-bar").css("width", "0%");
$(".uploading").show();
},
progressall: function(e, data) {
var progress = parseInt(data.loaded / data.total * 100, 10);
$("#progress-bar").css("width", progress + "%"); // .text(progress + "%")
},
stop: function(e) {
$(".uploading").hide();
},