refactor: rename toast behavior to tooltip (typo)

This commit is contained in:
Herculino Trotta
2024-10-11 22:04:49 -03:00
parent c59edb7fac
commit c8a9dfb38e
10 changed files with 15 additions and 15 deletions

View File

@@ -0,0 +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
end
</script>