textarea-autosize icon indicating copy to clipboard operation
textarea-autosize copied to clipboard

Vertically adjust a textarea based on user input without using a clone or ghost element.

Results 2 textarea-autosize issues
Sort by recently updated
recently updated
newest added

I'm working in sveltekit with typescript, although I'm new to the latter. I was able to address some typescript warnings when using this package by adding the following to my...

Current implementation works with container scrolling ``` js var $window = $(window); var currentScrollPosition = $window.scrollTop(); // .... $window.scrollTop(currentScrollPosition); ``` The potential issue is that scrollable container for target textarea...