diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-02-09 22:32:09 +0100 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2019-02-10 22:54:25 +0100 |
commit | 7c0728c7764e1e851eb0174b37767029c1061f2d (patch) | |
tree | 7bd79861587506866fa2b5b0e52fd0b68c1b3648 /app | |
parent | dfe1d548a58154c988b98cab313496292bdc62e2 (diff) |
Minor fix to timeline jump avoiding behavior
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/flavours/glitch/components/scrollable_list.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/components/scrollable_list.js b/app/javascript/flavours/glitch/components/scrollable_list.js index 2e7c9fd6e..462185bbc 100644 --- a/app/javascript/flavours/glitch/components/scrollable_list.js +++ b/app/javascript/flavours/glitch/components/scrollable_list.js @@ -129,7 +129,7 @@ export default class ScrollableList extends PureComponent { } getScrollPosition = () => { - if (this.node && this.node.scrollTop > 0) { + if (this.node && (this.node.scrollTop > 0 || this.mouseMovedRecently)) { return {height: this.node.scrollHeight, top: this.node.scrollTop}; } else { return null; |