()
| 150 | } |
| 151 | |
| 152 | onMouseOverTooltipContent() { |
| 153 | if (this.props.trigger.indexOf('hover') > -1 && !this.props.autohide) { |
| 154 | if (this._hideTimeout) { |
| 155 | this.clearHideTimeout(); |
| 156 | } |
| 157 | if (this.state.isOpen && !this.props.isOpen) { |
| 158 | this.toggle(); |
| 159 | } |
| 160 | } |
| 161 | } |
| 162 | |
| 163 | onMouseLeaveTooltipContent(e) { |
| 164 | if (this.props.trigger.indexOf('hover') > -1 && !this.props.autohide) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…