()
| 295 | } |
| 296 | |
| 297 | removeTargetEvents() { |
| 298 | if (this._targets) { |
| 299 | this.removeEventOnTargets('mouseover', this.showWithDelay, true); |
| 300 | this.removeEventOnTargets('mouseout', this.hideWithDelay, true); |
| 301 | this.removeEventOnTargets('keydown', this.onEscKeyDown, true); |
| 302 | this.removeEventOnTargets('focusin', this.show, true); |
| 303 | this.removeEventOnTargets('focusout', this.hide, true); |
| 304 | } |
| 305 | |
| 306 | document.removeEventListener('click', this.handleDocumentClick, true); |
| 307 | } |
| 308 | |
| 309 | updateTarget() { |
| 310 | const newTarget = getTarget(this.props.target, true); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…