-
Notifications
You must be signed in to change notification settings - Fork 89
Open
Labels
Description
source:
onMouseOut: function (event) {
if (window._blockMouseEvents || !this._mouseDown) return;
this.processEvent(event);
this.props.onMouseOut && this.props.onMouseOut(event);
this.endMouseEvent();
},If I have <Tappable otherThings... onMouseOut={callback}/>, the callback will never be fired on mouse out, because !this._mouseDown is false. I think this is unexpected no?