Pascal Gloor 5 anni fa
parent
commit
ff93b4697b
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2
    2
      www/js/autodoc.js

+ 2
- 2
www/js/autodoc.js Vedi File

@@ -259,7 +259,7 @@ function upload_handler() {
conf.run.upload_handler = 0;
}
else {
setTimeout(function () { upload_handler(); }, 2000);
setTimeout(function () { upload_handler(); }, 500);
}
}

@@ -332,10 +332,10 @@ function upload_status() {
}
else if (file.progress == 100) {
$(obj).html(file.obj.name);
$(obj).css('width', '100%');
$(obj).addClass('bg-success');
$(obj).removeClass('progress-bar-animated');
$(obj).removeClass("progress-bar-striped");
$(obj).css('width', '100%');
}
else if (file.progress < 50) {
$(obj).html(file.obj.name + ': ' + 'reading file');

Loading…
Annulla
Salva