make sure all tooltips are hidden before showing new ones to prevent stuck tooltips
This commit is contained in:
parent
6b092b34b3
commit
660c9c092e
@ -49,8 +49,8 @@ setTimeout(() => {
|
|||||||
|
|
||||||
function loadPageData() {
|
function loadPageData() {
|
||||||
itemList.bootstrapTable('refresh')
|
itemList.bootstrapTable('refresh')
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
|
$(".tooltip").tooltip("hide");
|
||||||
activateTooltips();
|
activateTooltips();
|
||||||
}, 1000);
|
}, 1000);
|
||||||
}
|
}
|
||||||
|
@ -150,6 +150,7 @@ function loadPageData() {
|
|||||||
itemListUnit.bootstrapTable('refresh');
|
itemListUnit.bootstrapTable('refresh');
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
|
$(".tooltip").tooltip("hide");
|
||||||
activateTooltips();
|
activateTooltips();
|
||||||
}, 1000);
|
}, 1000);
|
||||||
}
|
}
|
||||||
|
@ -14,8 +14,8 @@ setTimeout(() => {
|
|||||||
|
|
||||||
function loadPageData() {
|
function loadPageData() {
|
||||||
itemList.bootstrapTable('refresh')
|
itemList.bootstrapTable('refresh')
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
|
$(".tooltip").tooltip("hide");
|
||||||
activateTooltips();
|
activateTooltips();
|
||||||
}, 1000);
|
}, 1000);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user