/
rostislav1
/
ReqMaster
Обзор
Документация
Войти
/
rostislav1
/
ReqMaster
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/utils/autoResizeTextarea.js
18 строк
532 B
Wenn911
init ai agent
24 мар 2025, 23:48
24 мар 2025, 23:48
a6a2b5a
Код
Авторство
О чём код?
export const autoResizeTextarea = () => { const textarea = document.getElementById('input-prompt'); const lineHeight = 24; const maxLines = 6; const maxHeight = lineHeight * maxLines; textarea.style.height = 'auto'; if (textarea.scrollHeight > textarea.clientHeight) { if (textarea.scrollHeight <= maxHeight) { textarea.style.height = `${textarea.scrollHeight}px`; } else { textarea.style.height = `${maxHeight}px`; } } else { textarea.style.height = `${textarea.scrollHeight}px`; } }