diff options
author | Oskar Hollmann <oskarhollmann@gmail.com> | 2014-03-19 22:09:09 +0100 |
---|---|---|
committer | Oskar Hollmann <oskarhollmann@gmail.com> | 2014-03-19 22:09:09 +0100 |
commit | fa28c089fa3ffb72e97ca0f89cbfade3d0a8a8a5 (patch) | |
tree | eae7015f3493ad720de73edf1f688324187df782 /apps/files/js/file-upload.js | |
parent | 01e9e40d83e7929b81ae86d4a7f08517676565f3 (diff) | |
download | nextcloud-server-fa28c089fa3ffb72e97ca0f89cbfade3d0a8a8a5.tar.gz nextcloud-server-fa28c089fa3ffb72e97ca0f89cbfade3d0a8a8a5.zip |
Fix: 'Upload button tooltip doesn't disappear'
Fixes issue #7461. Tipsy tooltip must be hidden when the upload starts. Otherwise it covers the progress bar and stays in DOM.
Diffstat (limited to 'apps/files/js/file-upload.js')
-rwxr-xr-x[-rw-r--r--] | apps/files/js/file-upload.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index ea4061c9b0b..c668bbf397d 100644..100755 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -320,6 +320,7 @@ OC.Upload = { */ start: function(e) { OC.Upload.log('start', e, null); + $('#upload').tipsy('hide'); // otherwise "Upload max." covers progress bar }, submit: function(e, data) { OC.Upload.rememberUpload(data); |