make sure all tooltips are hidden before showing new ones to prevent stuck tooltips

This commit is contained in:
Sören Oesterwind 2023-07-10 18:18:38 +02:00
parent 6b092b34b3
commit 660c9c092e
3 changed files with 3 additions and 2 deletions

View File

@ -49,8 +49,8 @@ setTimeout(() => {
function loadPageData() {
itemList.bootstrapTable('refresh')
setTimeout(() => {
$(".tooltip").tooltip("hide");
activateTooltips();
}, 1000);
}

View File

@ -150,6 +150,7 @@ function loadPageData() {
itemListUnit.bootstrapTable('refresh');
setTimeout(() => {
$(".tooltip").tooltip("hide");
activateTooltips();
}, 1000);
}

View File

@ -14,8 +14,8 @@ setTimeout(() => {
function loadPageData() {
itemList.bootstrapTable('refresh')
setTimeout(() => {
$(".tooltip").tooltip("hide");
activateTooltips();
}, 1000);
}