Files
core/hwe/ts/util/autoResizeTextarea.ts
T
2021-09-05 17:52:39 +09:00

7 lines
228 B
TypeScript

import { unwrap } from "./unwrap";
export function autoResizeTextarea(e: InputEvent): void {
const el = unwrap(e.target) as HTMLInputElement;
el.style.height = 'auto';
el.style.height = `${el.scrollHeight + 1}px`;
}