From ca0d702fd80581f9ca4162904401e852ec6fa407 Mon Sep 17 00:00:00 2001 From: yueshuaijie Date: Thu, 14 Jul 2016 15:53:17 -0700 Subject: [PATCH] Fix link broken. Summary: The link to source of NativeMethodsMixin.js and ReactNativeBaseComponent.js in direct manipulation page is broken, fix it. Closes https://github.com/facebook/react-native/pull/8774 Differential Revision: D3564954 Pulled By: JoelMarcey fbshipit-source-id: 315fdbc5186b3f13e71ec84c9e683a7caaef1cfd --- docs/DirectManipulation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/DirectManipulation.md b/docs/DirectManipulation.md index bae7ed785..7cc795a3e 100644 --- a/docs/DirectManipulation.md +++ b/docs/DirectManipulation.md @@ -83,11 +83,11 @@ performing continuous animations and responding to gestures, judiciously optimizing your components can improve your animations' fidelity. If you look at the implementation of `setNativeProps` in -[NativeMethodsMixin.js](https://github.com/facebook/react-native/blob/master/Libraries/ReactIOS/NativeMethodsMixin.js) +[NativeMethodsMixin.js](https://github.com/facebook/react/blob/master/src/renderers/native/NativeMethodsMixin.js) you will notice that it is a wrapper around `RCTUIManager.updateView` - this is the exact same function call that results from re-rendering - see [receiveComponent in -ReactNativeBaseComponent.js](https://github.com/facebook/react-native/blob/master/Libraries/ReactNative/ReactNativeBaseComponent.js). +ReactNativeBaseComponent.js](https://github.com/facebook/react/blob/master/src/renderers/native/ReactNativeBaseComponent.js). ## Composite components and setNativeProps