mirror of
https://github.com/swisspol/GCDWebServer.git
synced 2026-04-24 00:00:04 +08:00
Removed global progress bar
This commit is contained in:
@@ -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();
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user