MCPcopy Index your code
hub / github.com/reactstrap/reactstrap / show

Function show

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

Source from the content-addressed store, hash-verified

207 }
208
209 show(e) {
210 if (!this.props.isOpen) {
211 this.clearShowTimeout();
212 this.currentTargetElement = e
213 ? e.currentTarget || this.getCurrentTarget(e.target)
214 : null;
215 if (e && e.composedPath && typeof e.composedPath === 'function') {
216 const path = e.composedPath();
217 this.currentTargetElement =
218 (path && path[0]) || this.currentTargetElement;
219 }
220 this.toggle(e);
221 }
222 }
223
224 showWithDelay(e) {
225 if (this._hideTimeout) {

Callers

nothing calls this directly

Calls 1

toggleMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…