You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var dependencies = [
topLevelTypes.topMouseDown,
topLevelTypes.topMouseMove,
topLevelTypes.topMouseUp
];
if (EventPluginUtils.useTouchEvents) {
dependencies.push(
topLevelTypes.topTouchCancel,
topLevelTypes.topTouchEnd,
topLevelTypes.topTouchStart,
topLevelTypes.topTouchMove
);
}
at the top level. Since useTouchEvents won't have been set to true at require time (even if it will be set to true before any user code runs), the touch events are never bound.
Not super high priority because we don't actually support/advertise TapEventPlugin yet, but it would be nice if this worked before merging #1170.
TapEventPlugin has:
at the top level. Since useTouchEvents won't have been set to true at require time (even if it will be set to true before any user code runs), the touch events are never bound.
Not super high priority because we don't actually support/advertise TapEventPlugin yet, but it would be nice if this worked before merging #1170.
(Thanks @ryanseddon for reporting.)
The text was updated successfully, but these errors were encountered: