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

Function onMouseLeaveTooltipContent

src/TooltipPopoverWrapper.js:163–174  ·  view source on GitHub ↗
(e)

Source from the content-addressed store, hash-verified

161 }
162
163 onMouseLeaveTooltipContent(e) {
164 if (this.props.trigger.indexOf('hover') > -1 && !this.props.autohide) {
165 if (this._showTimeout) {
166 this.clearShowTimeout();
167 }
168 e.persist();
169 this._hideTimeout = setTimeout(
170 this.hide.bind(this, e),
171 this.getDelay('hide'),
172 );
173 }
174 }
175
176 onEscKeyDown(e) {
177 if (e.key === 'Escape') {

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…