Fix textchange event enqueueing

(Was broken by e1535fbd71d8c89c82cd9d9073c1ee97ee6a3b00.)
This commit is contained in:
Ben Alpert
2013-06-13 20:34:14 -07:00
parent 06cff60bc1
commit 792b69ba11
+2 -2
View File
@@ -140,8 +140,8 @@ var handlePropertyChange = function(nativeEvent) {
// events and have it go through ReactEventTopLevelCallback. Since it
// doesn't, we manually listen for the propertychange event and so we
// have to enqueue and process the abstract event manually.
EventPluginHub.enqueueAbstractEvents(abstractEvent);
EventPluginHub.processAbstractEventQueue();
EventPluginHub.enqueueEvents(abstractEvent);
EventPluginHub.processEventQueue();
}
}
};