fix popups/tooltips not disappearing after loading new note, closes #1214

This commit is contained in:
zadam
2020-09-05 21:51:00 +02:00
parent ceb762e56b
commit 6d095b7250
4 changed files with 16 additions and 2 deletions

View File

@@ -219,4 +219,16 @@ export default class Entrypoints extends Component {
toastService.showMessage("Note executed");
}
hideAllTooltips() {
$(".tooltip").removeClass("show");
}
tabNoteSwitchedEvent() {
this.hideAllTooltips();
}
activeTabChangedEvent() {
this.hideAllTooltips();
}
}