Pascal Gloor před 5 roky
rodič
revize
1830966853
1 změnil soubory, kde provedl 4 přidání a 2 odebrání
  1. 4
    2
      www/js/autodoc.js

+ 4
- 2
www/js/autodoc.js Zobrazit soubor

@@ -266,19 +266,21 @@ function upload_read_event(e) {
xhr: function()
{
var xhr = $.ajaxSettings.xhr();
$(xhr.upload).on('progress', e.data, function(evt) {
$(xhr.upload).on('progress', e.data, function(evt, id) {
// xhr.upload.addEventListener("progress", function(evt){
if (evt.lengthComputable) {
var progress = Math.floor(evt.loaded / evt.total * 50);
if ( progress < 1 ) { progress = 1; }
if ( progress > 49 ) { progress = 49; }
temp.upload[id].progress = 50 + progress;
console.log("upload_progress_event", evt);
}
});
//}, false);
return xhr;
},
success: function(data, status, xhr){
success: function(id, status, xhr){
temp.upload[id].progress = 100;
console.log("upload_complete",data, status, xhr);
}
});

Načítá se…
Zrušit
Uložit