[ReactNative] s/RK/RCT in OSS

This commit is contained in:
Spencer Ahrens
2015-03-17 03:08:46 -07:00
parent 733596b67a
commit b396de3cc8
50 changed files with 276 additions and 263 deletions

View File

@@ -6,7 +6,7 @@
'use strict';
var ReactIOSTagHandles = require('ReactIOSTagHandles');
var RKUIManager = require('NativeModulesDeprecated').RKUIManager;
var RCTUIManager = require('NativeModulesDeprecated').RCTUIManager;
/**
* Queries the layout of a view. The layout does not reflect the element as
@@ -29,7 +29,7 @@ var RKUIManager = require('NativeModulesDeprecated').RKUIManager;
*/
var queryLayoutByID = function(rootNodeID, onError, onSuccess) {
// Native bridge doesn't *yet* surface errors.
RKUIManager.measure(
RCTUIManager.measure(
ReactIOSTagHandles.rootNodeIDToTag[rootNodeID],
onSuccess
);