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