Files
hoppscotch/directives/textareaAutoHeight.js
2020-02-24 21:06:23 -05:00

9 lines
195 B
JavaScript

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