UNPKG
alpinejs-textarea-grow
Version:
latest (1.0.5)
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Autogrow textarea elements with Alpine JS
alpinejs-textarea-grow
/
dist
/
grow.min.js
2 lines
(1 loc)
•
213 B
JavaScript
View Raw
1
2
(
()=>
{
function
i
(
e
){e.
directive
(
"grow"
,
t
=>
{t.
addEventListener
(
"input"
,
()=>
{t.
style
.
height
=
"auto"
,t.
style
.
height
=
`
${t.scrollHeight}
px`
})})}
document
.
addEventListener
(
"alpine:init"
,
()=>
window
.
Alpine
.
plugin
(i));})();