api-client/directives/textareaAutoHeight.js

9 lines
196 B
JavaScript
Raw Normal View History

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