diff options
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/OC/dialogs.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/src/OC/dialogs.js b/core/src/OC/dialogs.js index 82e4c932a68..1c3962f6f16 100644 --- a/core/src/OC/dialogs.js +++ b/core/src/OC/dialogs.js @@ -327,6 +327,7 @@ const Dialogs = { }) OC.registerMenu(newButton, self.$filePicker.find('.menu'), function() { + $input.tooltip('hide') $input.focus() self.$filePicker.ocdialog('setEnterCallback', function() { event.stopImmediatePropagation() @@ -427,6 +428,9 @@ const Dialogs = { $form.submit() } }) + $input.on('input', function(event) { + $input.tooltip('hide') + }) self.$filePicker.ready(function() { self.$fileListHeader = self.$filePicker.find('.filelist thead tr') |