@@ -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) { |