api-client/directives/textareaAutoHeight.js

9 lines
195 B
JavaScript
Raw Normal View History

export default {
name: "textareaAutoHeight",
2019-11-28 15:11:52 +00:00
update({ scrollHeight, clientHeight, style }) {
if (scrollHeight !== clientHeight) {
2020-02-24 18:44:50 +00:00
style.minHeight = `${scrollHeight}px`
2019-10-25 08:14:34 +00:00
}
2020-02-24 18:44:50 +00:00
},
}