more logging cleanup
This commit is contained in:
parent
9da13fe430
commit
02a5aa3b1f
1 changed files with 3 additions and 2 deletions
|
@ -569,11 +569,12 @@ module.exports = React.createClass({
|
||||||
debuglog("unable to save scroll state: found no children in the viewport");
|
debuglog("unable to save scroll state: found no children in the viewport");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
debuglog("saving anchored scroll state to message", node && node.innerText);
|
const scrollToken = node.dataset.scrollTokens.split(',')[0];
|
||||||
|
debuglog("saving anchored scroll state to message", node && node.innerText, scrollToken);
|
||||||
this.scrollState = {
|
this.scrollState = {
|
||||||
stuckAtBottom: false,
|
stuckAtBottom: false,
|
||||||
trackedNode: node,
|
trackedNode: node,
|
||||||
trackedScrollToken: node.dataset.scrollTokens.split(',')[0],
|
trackedScrollToken: scrollToken,
|
||||||
bottomOffset: this._topFromBottom(node),
|
bottomOffset: this._topFromBottom(node),
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue