Fix SelectEventPlugin

mouseup was not fired when context menu showed, so select events stopped being fired.
This commit is contained in:
Josh Duck
2013-12-11 13:40:40 -08:00
committed by Paul O’Shannessy
parent 02de96f012
commit 8b0af9b5de
+1
View File
@@ -192,6 +192,7 @@ var SelectEventPlugin = {
case topLevelTypes.topMouseDown:
mouseDown = true;
break;
case topLevelTypes.topContextMenu:
case topLevelTypes.topMouseUp:
mouseDown = false;
return constructSelectEvent(nativeEvent);