Files
hoppscotch/directives/textareaAutoHeight.js
2019-11-27 06:54:32 +05:30

9 lines
193 B
JavaScript

export default {
name: "textareaAutoHeight",
update({scrollHeight, clientHeight, style}) {
if (scrollHeight !== clientHeight) {
style.minHeight = `${scrollHeight}px`;
}
}
}