Files
hoppscotch/directives/textareaAutoHeight.js
2020-02-24 13:44:50 -05:00

9 lines
195 B
JavaScript

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