Force hide tooltips on sidebar close
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
This commit is contained in:
parent
701343c1c8
commit
41d2aaa32c
4 changed files with 2 additions and 0 deletions
|
@ -590,6 +590,7 @@
|
|||
}
|
||||
|
||||
if (!fileName) {
|
||||
this._detailsView.$el.find('[data-original-title]').tooltip('hide')
|
||||
this._detailsView.setFileInfo(null);
|
||||
if (this._currentFileModel) {
|
||||
this._currentFileModel.off();
|
||||
|
|
BIN
core/js/dist/main.js
vendored
BIN
core/js/dist/main.js
vendored
Binary file not shown.
BIN
core/js/dist/main.js.map
vendored
BIN
core/js/dist/main.js.map
vendored
Binary file not shown.
|
@ -37,6 +37,7 @@ Apps.showAppSidebar = function ($el) {
|
|||
*/
|
||||
Apps.hideAppSidebar = function ($el) {
|
||||
var $appSidebar = $el || $('#app-sidebar');
|
||||
$appSidebar.find('[data-original-title]').tooltip('hide')
|
||||
$appSidebar.hide().addClass('disappear');
|
||||
$('#app-content').trigger(new $.Event('appresized'));
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue