(e)
| 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) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…