diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-09-06 18:16:40 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-09-06 18:16:40 +0200 |
commit | e2c0fe829698de9f89bf2cc3f854942f44bffc69 (patch) | |
tree | 72eb928d85a5353ec27d969ab31330d20b8ffad5 /apps/files/js/file-upload.js | |
parent | 238d92b11cab31061fb5766b9f75d4772d48283e (diff) | |
download | nextcloud-server-e2c0fe829698de9f89bf2cc3f854942f44bffc69.tar.gz nextcloud-server-e2c0fe829698de9f89bf2cc3f854942f44bffc69.zip |
fix upload of multiple files
Diffstat (limited to 'apps/files/js/file-upload.js')
-rw-r--r-- | apps/files/js/file-upload.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index 3fcda22e53e..4f93403baf5 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -536,8 +536,8 @@ $(document).ready(function() { //} //if user pressed cancel hide upload chrome //if (! OC.Upload.isProcessing()) { - // $('#uploadprogresswrapper input.stop').fadeOut(); - // $('#uploadprogressbar').fadeOut(); + $('#uploadprogresswrapper input.stop').fadeOut(); + $('#uploadprogressbar').fadeOut(); //} }); fileupload.on('fileuploadfail', function(e, data) { |