@excelwebzone/symfony-admin-ui
Version:
Symfony Admin UI is a simple set of UI behaviors and components used with your [symfony-admin](https://github.com/excelwebzone/symfony-admin-bundle) application.
16 lines (13 loc) • 411 B
JavaScript
import $ from 'jquery';
$(() => {
$(document).on('input keydown', 'textarea:not(.ignore-auto-grow)', (e) => {
const $textarea = $(e.currentTarget);
setTimeout(() => {
$textarea.css('height', 'auto');
$textarea.css('height', $textarea.get(0).scrollHeight + 'px');
}, 0);
});
for (let textarea of $('textarea:not(.ignore-auto-grow)')) {
$(textarea).trigger('keydown');
}
});