Skip to content

Commit

Permalink
Fixed #733 - Textarea does not auto resize its height when created
Browse files Browse the repository at this point in the history
  • Loading branch information
cagataycivici committed Dec 9, 2020
1 parent c30e0cd commit 1c5fac7
Showing 1 changed file with 8 additions and 18 deletions.
26 changes: 8 additions & 18 deletions src/components/textarea/Textarea.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ export default {
modelValue: null,
autoResize: Boolean
},
cachedScrollHeight: null,
mounted() {
if (this.$el.offsetParent && this.autoResize) {
this.resize();
Expand All @@ -22,24 +21,15 @@ export default {
},
methods: {
resize() {
if (!this.cachedScrollHeight) {
this.cachedScrollHeight = this.$el.scrollHeight;
this.$el.style.overflow = "hidden";
this.$el.style.height = 'auto';
this.$el.style.height = this.$el.scrollHeight + 'px';
if (parseFloat(this.$el.style.height) >= parseFloat(this.$el.style.maxHeight)) {
this.$el.style.overflowY = "scroll";
this.$el.style.height = this.$el.style.maxHeight;
}
if (this.cachedScrollHeight !== this.$el.scrollHeight) {
this.$el.style.height = ''
this.$el.style.height = this.$el.scrollHeight + 'px';
if (parseFloat(this.$el.style.height) >= parseFloat(this.$el.style.maxHeight)) {
this.$el.style.overflowY = "scroll";
this.$el.style.height = this.$el.style.maxHeight;
}
else {
this.$el.style.overflow = "hidden";
}
this.cachedScrollHeight = this.$el.scrollHeight;
else {
this.$el.style.overflow = "hidden";
}
},
onInput(event) {
Expand Down

0 comments on commit 1c5fac7

Please sign in to comment.