Fix tooltips instantiation for async (XHR) markup

This commit is contained in:
Molkobain
2021-03-16 21:56:44 +01:00
parent 6bc2d241fd
commit 190ac1a65a
6 changed files with 37 additions and 34 deletions

View File

@@ -408,6 +408,12 @@ JS
});
}
});
$(document).ajaxSuccess(function(){
// Init tooltips from async. markup, small timeout to allow markup to be built if necessary
setTimeout(function(){
CombodoTooltip.InitAllNonInstantiatedTooltips();
}, 1000);
});
JS
);