feat(ui): auto-resize textareas when typing

This commit is contained in:
Herculino Trotta
2025-02-06 21:40:04 -03:00
parent d207760ae9
commit 93bb34166e
3 changed files with 10 additions and 52 deletions

View File

@@ -0,0 +1,7 @@
<script type="text/hyperscript">
on htmx:afterSettle
for elem in <.textarea/>
autosize(elem)
end
end
</script>