Files
hoppscotch/directives/textareaAutoHeight.js
2019-11-28 20:41:52 +05:30

9 lines
196 B
JavaScript

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