From e902bbf5e7474a02bba08569c8a46baceabc10c8 Mon Sep 17 00:00:00 2001 From: Edward Date: Fri, 30 Nov 2018 11:44:28 +0800 Subject: [PATCH] Roo/bootstrap/DocumentManager.js --- Roo/bootstrap/DocumentManager.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Roo/bootstrap/DocumentManager.js b/Roo/bootstrap/DocumentManager.js index 1b1307dde4..84ed6df39a 100644 --- a/Roo/bootstrap/DocumentManager.js +++ b/Roo/bootstrap/DocumentManager.js @@ -362,10 +362,10 @@ Roo.extend(Roo.bootstrap.DocumentManager, Roo.bootstrap.Component, { this.files = this.files.slice(0, this.boxes); } - this.uploader.show(false); + this.uploader.show(); if(this.boxes > 0 && this.files.length > this.boxes - 1){ - this.uploader.hide(false); + this.uploader.hide(); } var _this = this; @@ -419,14 +419,14 @@ Roo.extend(Roo.bootstrap.DocumentManager, Roo.bootstrap.Component, { arrange : function() { if(!this.delegates.length){ - this.progressDialog.hide(false); + this.progressDialog.hide(); this.refresh(); return; } var delegate = this.delegates.shift(); - this.progressDialog.show(false); + this.progressDialog.show(); this.progressDialog.setTitle((this.progressBar.aria_valuemax - this.delegates.length) + ' / ' + this.progressBar.aria_valuemax); @@ -437,10 +437,10 @@ Roo.extend(Roo.bootstrap.DocumentManager, Roo.bootstrap.Component, { refresh : function() { - this.uploader.show(false); + this.uploader.show(); if(this.boxes > 0 && this.files.length > this.boxes - 1){ - this.uploader.hide(false); + this.uploader.hide(); } Roo.isTouch ? this.closable(false) : this.closable(true); -- 2.39.2