There was an error while loading. Please reload this page.
1 parent 701343c commit 28d520aCopy full SHA for 28d520a
2 files changed
apps/files/js/filelist.js
@@ -590,6 +590,7 @@
590
}
591
592
if (!fileName) {
593
+ this._detailsView.$el.find('[data-original-title]').tooltip('hide')
594
this._detailsView.setFileInfo(null);
595
if (this._currentFileModel) {
596
this._currentFileModel.off();
core/src/OC/apps.js
@@ -37,6 +37,7 @@ Apps.showAppSidebar = function ($el) {
37
*/
38
Apps.hideAppSidebar = function ($el) {
39
var $appSidebar = $el || $('#app-sidebar');
40
+ $appSidebar.find('[data-original-title]').tooltip('hide')
41
$appSidebar.hide().addClass('disappear');
42
$('#app-content').trigger(new $.Event('appresized'));
43
};
0 commit comments