Browse Source

debug

master
Pascal Gloor 5 years ago
parent
commit
deb3075c7d
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      www/js/autodoc.js

+ 2
- 1
www/js/autodoc.js View File

@@ -236,9 +236,10 @@ function upload_handler() {

function upload_status() {
var finished = 1;
$('.autodoc_upload_status').children().remove();
$.each(temp.upload, function(id, file) {
console.log(id,file);
var obj = $(".autodoc_template_progress").children();
var obj = $(".autodoc_template_progress").children().clone();
$(obj).children().html(file.obj.name);
$(obj).children().css('width', "50%");
if ( file.progress==1) {

Loading…
Cancel
Save