feat: another batch

This commit is contained in:
Herculino Trotta
2025-11-03 01:40:13 -03:00
parent 89b2d0118d
commit 9ade58a003
49 changed files with 822 additions and 493 deletions

View File

@@ -1,20 +1,13 @@
<script type="text/hyperscript">
def initTooltips(t)
-- Initialize new tooltips
for tooltipTriggerEl in <[data-bs-toggle="tooltip"]/> in t
call bootstrap.Tooltip.getOrCreateInstance(tooltipTriggerEl)
end
end
init
call initTooltips(body)
call initiateTooltips()
end
on htmx:afterSettle
call initTooltips(body)
call initiateTooltips()
end
on tooltips
call initTooltips(body)
call initiateTooltips()
end
</script>