Skip to content

Commit bb34e90

Browse files
authored
[stable16] Force hide tooltips on sidebar close (#17500)
[stable16] Force hide tooltips on sidebar close
2 parents b8cc88c + 41d2aaa commit bb34e90

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

apps/files/js/filelist.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -590,6 +590,7 @@
590590
}
591591

592592
if (!fileName) {
593+
this._detailsView.$el.find('[data-original-title]').tooltip('hide')
593594
this._detailsView.setFileInfo(null);
594595
if (this._currentFileModel) {
595596
this._currentFileModel.off();

core/js/dist/main.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/js/dist/main.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/src/OC/apps.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ Apps.showAppSidebar = function ($el) {
3737
*/
3838
Apps.hideAppSidebar = function ($el) {
3939
var $appSidebar = $el || $('#app-sidebar');
40+
$appSidebar.find('[data-original-title]').tooltip('hide')
4041
$appSidebar.hide().addClass('disappear');
4142
$('#app-content').trigger(new $.Event('appresized'));
4243
};

0 commit comments

Comments
 (0)