()
| 221 | } |
| 222 | |
| 223 | componentWillUnmount() { |
| 224 | gridUpdateTabs = gridUpdatePostsVisual = null; |
| 225 | const viewPort = document.querySelector(this.viewportSelector); |
| 226 | lastScroll = viewPort.scrollTop; |
| 227 | viewPort.removeEventListener("scroll", this.checkScroll); |
| 228 | this.configButton.deregister(); |
| 229 | } |
| 230 | |
| 231 | isScrolledBottom(event) { |
| 232 | const viewPort = event.target; |
nothing calls this directly
no test coverage detected