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?
source:
If I have
<Tappable otherThings... onMouseOut={callback}/>, the callback will never be fired on mouse out, because!this._mouseDownis false. I think this is unexpected no?