mirror of
https://github.com/vector-im/element-web.git
synced 2025-10-03 19:41:20 +02:00
correctly calculate last node in viewport
these variables are now relative to bottom of timeline, before it was the top
This commit is contained in:
parent
71f6b08b26
commit
469511aa44
@ -555,7 +555,7 @@ module.exports = React.createClass({
|
||||
node = messages[i];
|
||||
// break at the first message (coming from the bottom)
|
||||
// that has it's offsetTop above the bottom of the viewport.
|
||||
if (node.offsetTop < viewportBottom) {
|
||||
if (this._topFromBottom(node) > viewportBottom) {
|
||||
// Use this node as the scrollToken
|
||||
break;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user