diff options
| author | Henry Jameson <me@hjkos.com> | 2020-08-18 00:52:51 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2020-08-18 00:52:51 +0300 |
| commit | a6223cec0c6bb037f1e64a3bc7dfd7fca354faa1 (patch) | |
| tree | 8cf8fd7d0e761a9ce0c4575d8ff702d1fa515bfe /src | |
| parent | ecbbec7b9798caff1d401403592de5ba02a3f509 (diff) | |
Fix last line having slightly cut-off low-hanging parts of characters
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/post_status_form/post_status_form.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js index e7094bec..66252bda 100644 --- a/src/components/post_status_form/post_status_form.js +++ b/src/components/post_status_form/post_status_form.js @@ -481,7 +481,7 @@ const PostStatusForm = { // BEGIN content size update target.style.height = 'auto' - const heightWithoutPadding = Math.floor(target.scrollHeight - vertPadding) + const heightWithoutPadding = Math.ceil(target.scrollHeight - vertPadding) + 1 let newHeight = this.maxHeight ? Math.min(heightWithoutPadding, this.maxHeight) : heightWithoutPadding // This is a bit of a hack to combat target.scrollHeight being different on every other input // on some browsers for whatever reason. Don't change the height if difference is 1px or less. |
