Skip to content
Snippets Groups Projects
Commit fa28c089 authored by Oskar Hollmann's avatar Oskar Hollmann
Browse files

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.
parent 01e9e40d
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment