mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
reset comment height when empty
GitOrigin-RevId: 8f4144354dd2fc9f2070e0ef7955f318aaece502
This commit is contained in:
parent
8d44f44784
commit
9a252b6629
1 changed files with 7 additions and 3 deletions
|
@ -15,10 +15,14 @@ define(['base'], App =>
|
||||||
const resetHeight = function() {
|
const resetHeight = function() {
|
||||||
const curHeight = el.outerHeight()
|
const curHeight = el.outerHeight()
|
||||||
const fitHeight = el.prop('scrollHeight')
|
const fitHeight = el.prop('scrollHeight')
|
||||||
|
// clear height if text area is empty
|
||||||
if (fitHeight > curHeight && el.val() !== '') {
|
if (el.val() === '') {
|
||||||
|
el.css('height', 'unset')
|
||||||
|
}
|
||||||
|
// otherwise expand to fit text
|
||||||
|
else if (fitHeight > curHeight) {
|
||||||
scope.$emit('expandable-text-area:resize')
|
scope.$emit('expandable-text-area:resize')
|
||||||
return el.css('height', fitHeight)
|
el.css('height', fitHeight)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue