mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-10 01:25:15 +00:00
refactor IntersectionObserver to observe viewport in single-column mode (#12735)
This commit is contained in:
parent
3b3bdc7293
commit
2a5da8c961
|
@ -210,10 +210,13 @@ export default class ScrollableList extends PureComponent {
|
||||||
}
|
}
|
||||||
|
|
||||||
attachIntersectionObserver () {
|
attachIntersectionObserver () {
|
||||||
this.intersectionObserverWrapper.connect({
|
let nodeOptions = {
|
||||||
root: this.node,
|
root: this.node,
|
||||||
rootMargin: '300% 0px',
|
rootMargin: '300% 0px',
|
||||||
});
|
};
|
||||||
|
|
||||||
|
this.intersectionObserverWrapper
|
||||||
|
.connect(this.props.bindToDocument ? {} : nodeOptions);
|
||||||
}
|
}
|
||||||
|
|
||||||
detachIntersectionObserver () {
|
detachIntersectionObserver () {
|
||||||
|
|
Loading…
Reference in a new issue