|
|
|
@ -87,6 +87,11 @@ async function mouseEnterHandler() {
|
|
|
|
|
|
|
|
|
|
|
|
$(this).tooltip('show');
|
|
|
|
$(this).tooltip('show');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Dismiss the tooltip immediately if a link was clicked inside the tooltip.
|
|
|
|
|
|
|
|
$(`.${tooltipClass} a`).on("click", (e) => {
|
|
|
|
|
|
|
|
$(this).tooltip('dispose');
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// the purpose of the code below is to:
|
|
|
|
// the purpose of the code below is to:
|
|
|
|
// - allow user to go from hovering the link to hovering the tooltip to be able to scroll,
|
|
|
|
// - allow user to go from hovering the link to hovering the tooltip to be able to scroll,
|
|
|
|
// click on links within tooltip etc. without tooltip disappearing
|
|
|
|
// click on links within tooltip etc. without tooltip disappearing
|
|
|
|
|