()
| 920 | } |
| 921 | |
| 922 | observeTableEnd() { |
| 923 | if (!this.tableEndObserved) { |
| 924 | this.getIntersectionObserver().observe(this.tableEndDOM); |
| 925 | this.tableEndObserved = true; |
| 926 | } |
| 927 | } |
| 928 | |
| 929 | onInteresection(entries: Array<IntersectionObserverEntry>) { |
| 930 | if (this.initialIntersection) { |
no test coverage detected