fix: remove tooltip dispose on click

This commit is contained in:
Herculino Trotta
2024-10-13 19:20:33 -03:00
parent 71e3aa87ed
commit 75feb9df4c

View File

@@ -1,6 +1,6 @@
<script type="text/hyperscript">
behavior tooltip
on mouseenter call bootstrap.Tooltip.getOrCreateInstance(me).show() end
on mouseleave or click call bootstrap.Tooltip.getOrCreateInstance(me).dispose() end
on mouseleave call bootstrap.Tooltip.getOrCreateInstance(me).dispose() end
end
</script>