[ReactNative] Rename ReactIOS JS module (and relatives) to ReactNative.

This commit is contained in:
Krzysztof Magiera
2015-05-08 09:45:43 -07:00
committed by Christopher Chedeau
parent 1db2f07192
commit ff00e1496c
37 changed files with 239 additions and 239 deletions

View File

@@ -183,7 +183,7 @@ var PanResponder = {
* changes* in the centroid of recently moved touches.
*
* There is also some nuance with how we handle multiple moved touches in a
* single event. With the way `ReactIOSEventEmitter` dispatches touches as
* single event. With the way `ReactNativeEventEmitter` dispatches touches as
* individual events, multiple touches generate two 'move' events, each of
* them triggering `onResponderMove`. But with the way `PanResponder` works,
* all of the gesture inference is performed on the first dispatch, since it

View File

@@ -2,7 +2,7 @@
* @providesModule UniversalWorkerNodeHandle
*/
var ReactIOSTagHandles = require('ReactIOSTagHandles');
var ReactNativeTagHandles = require('ReactNativeTagHandles');
var invariant = require('invariant');
@@ -12,7 +12,7 @@ var UniversalWorkerNodeHandle = {
nodeHandle !== undefined && nodeHandle !== null && nodeHandle !== 0,
'No node handle defined'
);
return ReactIOSTagHandles.tagToRootNodeID[nodeHandle];
return ReactNativeTagHandles.tagToRootNodeID[nodeHandle];
}
};