disable scroll-to-token entirely temporarily - https://github.com/vector-im/vector-web/issues/946
This commit is contained in:
parent
687eae7f43
commit
34d0fc890a
1 changed files with 3 additions and 1 deletions
|
@ -418,7 +418,9 @@ module.exports = React.createClass({
|
||||||
var scrollState = this.scrollState;
|
var scrollState = this.scrollState;
|
||||||
var scrollNode = this._getScrollNode();
|
var scrollNode = this._getScrollNode();
|
||||||
|
|
||||||
if (scrollState.stuckAtBottom) {
|
// XXX: DISABLE SCROLL TO TOKEN ENTIRELY TEMPORARILY AS IT'S SCREWING
|
||||||
|
// UP MY DEMO - see https://github.com/vector-im/vector-web/issues/946
|
||||||
|
if (true || scrollState.stuckAtBottom) {
|
||||||
scrollNode.scrollTop = scrollNode.scrollHeight;
|
scrollNode.scrollTop = scrollNode.scrollHeight;
|
||||||
debuglog("Scrolled to bottom; offset now", scrollNode.scrollTop);
|
debuglog("Scrolled to bottom; offset now", scrollNode.scrollTop);
|
||||||
} else if (scrollState.trackedScrollToken) {
|
} else if (scrollState.trackedScrollToken) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue