Skip to content

Commit

Permalink
[fixed] Popovers flicker when moving mouse amongst children of the tr…
Browse files Browse the repository at this point in the history
…igger
  • Loading branch information
jamon committed Jun 18, 2015
1 parent fd66352 commit 2ffcf5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/OverlayTrigger.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ const OverlayTrigger = React.createClass({
}

if (isOneOf('hover', this.props.trigger)) {
props.onMouseOver = createChainedFunction(this.handleDelayedShow, this.props.onMouseOver);
props.onMouseOut = createChainedFunction(this.handleDelayedHide, this.props.onMouseOut);
props.onMouseEnter = createChainedFunction(this.handleDelayedShow, this.props.onMouseEnter);
props.onMouseLeave = createChainedFunction(this.handleDelayedHide, this.props.onMouseLeave);
}

if (isOneOf('focus', this.props.trigger)) {
Expand Down

0 comments on commit 2ffcf5d

Please sign in to comment.