From 2bdfb40a82999dc75cc7926b25caf6151cf20a8e Mon Sep 17 00:00:00 2001 From: Pedro Madruga Date: Wed, 7 Oct 2015 20:50:08 +0200 Subject: [PATCH] fix navigator comparison link in performance doc --- docs/Performance.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Performance.md b/docs/Performance.md index 7fe2b67e1..523ed79f8 100644 --- a/docs/Performance.md +++ b/docs/Performance.md @@ -72,7 +72,7 @@ out of the box than `Navigator`. The reason for this is that the animations for the transitions are done entirely on the main thread, and so they are not interrupted by frame drops on the JavaScript thread. ([Read about why you should probably use Navigator -anyways.](/docs/navigator-comparison.html)) +anyways.](/react-native/docs/navigator-comparison.html)) Similarly, you can happily scroll up and down through a ScrollView when the JavaScript thread is locked up because the ScrollView lives on the @@ -137,7 +137,7 @@ class ExpensiveScene extends React.Component { if (this.state.renderPlaceholderOnly) { return this._renderPlaceholderView(); } - + return ( Your full view goes here