()
| 157 | } |
| 158 | |
| 159 | componentWillUnmount() { |
| 160 | window.removeEventListener('resize', this.updateFrameAndClearCache); |
| 161 | this.scrollParent.removeEventListener( |
| 162 | 'scroll', |
| 163 | this.updateFrameAndClearCache, |
| 164 | PASSIVE |
| 165 | ); |
| 166 | this.scrollParent.removeEventListener('mousewheel', NOOP, PASSIVE); |
| 167 | } |
| 168 | |
| 169 | getOffset(el) { |
| 170 | const { axis } = this.props; |
no outgoing calls
no test coverage detected