MCPcopy Create free account
hub / github.com/reactstrap/reactstrap / removeTargetEvents

Function removeTargetEvents

src/TooltipPopoverWrapper.js:297–307  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…