[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

@@ -11,7 +11,7 @@
*/
'use strict';
var ReactIOSTagHandles = require('ReactIOSTagHandles');
var ReactNativeTagHandles = require('ReactNativeTagHandles');
var RCTUIManager = require('NativeModules').UIManager;
type OnSuccessCallback = (
@@ -52,7 +52,7 @@ var queryLayoutByID = function(
): void {
// Native bridge doesn't *yet* surface errors.
RCTUIManager.measure(
ReactIOSTagHandles.rootNodeIDToTag[rootNodeID],
ReactNativeTagHandles.rootNodeIDToTag[rootNodeID],
onSuccess
);
};