diff options
| author | Shpuld Shpuldson <shpuld@gmail.com> | 2017-04-12 19:10:38 +0300 |
|---|---|---|
| committer | Shpuld Shpuldson <shpuld@gmail.com> | 2017-04-12 19:10:38 +0300 |
| commit | d8a01454dc4c0613fc2310beea6c9a82da8e679f (patch) | |
| tree | d4e98ee0eedbecf34b666c72190c36e307a9e13d | |
| parent | c9891703219607c19069ff26a4956a7636e5ab3a (diff) | |
another lint fix
| -rw-r--r-- | src/components/status/status.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js index 82de0fd2..5e7bde53 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -107,7 +107,7 @@ const Status = { let rect = this.$el.getBoundingClientRect() if (rect.top < 100) { window.scrollBy(0, rect.top - 200) - } else if(rect.bottom > window.innerHeight - 100) { + } else if (rect.bottom > window.innerHeight - 100) { // will be useful when scrolling down to replies or root posts is in window.scrollBy(0, rect.bottom + 200) } |
