()
| 1109 | } |
| 1110 | |
| 1111 | getIntersectionObserver(): IntersectionObserver { |
| 1112 | if (!this.growingIntersectionObserver) { |
| 1113 | this.growingIntersectionObserver = new IntersectionObserver(this.onInteresection.bind(this), { |
| 1114 | root: document, |
| 1115 | rootMargin: "0px", |
| 1116 | threshold: 1.0, |
| 1117 | }); |
| 1118 | } |
| 1119 | |
| 1120 | return this.growingIntersectionObserver; |
| 1121 | } |
| 1122 | |
| 1123 | get growsWithButton(): boolean { |
| 1124 | return this.growing === TableGrowingMode.Button; |
no outgoing calls
no test coverage detected