(e)
| 222 | } |
| 223 | |
| 224 | showWithDelay(e) { |
| 225 | if (this._hideTimeout) { |
| 226 | this.clearHideTimeout(); |
| 227 | } |
| 228 | this._showTimeout = setTimeout( |
| 229 | this.show.bind(this, e), |
| 230 | this.getDelay('show'), |
| 231 | ); |
| 232 | } |
| 233 | |
| 234 | hide(e) { |
| 235 | if (this.props.isOpen) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…