reset comment height when empty

GitOrigin-RevId: 8f4144354dd2fc9f2070e0ef7955f318aaece502
This commit is contained in:
Ersun Warncke 2019-10-28 08:26:10 -04:00 committed by sharelatex
parent 8d44f44784
commit 9a252b6629

View file

@ -15,10 +15,14 @@ define(['base'], App =>
const resetHeight = function() {
const curHeight = el.outerHeight()
const fitHeight = el.prop('scrollHeight')
if (fitHeight > curHeight && el.val() !== '') {
// clear height if text area is empty
if (el.val() === '') {
el.css('height', 'unset')
}
// otherwise expand to fit text
else if (fitHeight > curHeight) {
scope.$emit('expandable-text-area:resize')
return el.css('height', fitHeight)
el.css('height', fitHeight)
}
}