Explorar el Código

[fix] remove redundant progress modal frappe/erpnext#8993 (#3389)

version-14
Prateeksha Singh hace 8 años
committed by Nabin Hait
padre
commit
a124734860
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. +3
    -1
      frappe/public/js/frappe/upload.js

+ 3
- 1
frappe/public/js/frappe/upload.js Ver fichero

@@ -198,7 +198,9 @@ frappe.upload = {
i += 1;
var file = files[i];
args.is_private = file.is_private;
frappe.show_progress(__('Uploading'), i+1, files.length);
if(!opts.progress) {
frappe.show_progress(__('Uploading'), i+1, files.length);
}
}
frappe.upload.upload_file(file, args, opts);
}


Cargando…
Cancelar
Guardar