Skip to content

Commit

Permalink
Merge pull request facebook#3269 from pmadruga/docs_link_fix
Browse files Browse the repository at this point in the history
fix navigator comparison link in performance doc
  • Loading branch information
James Ide committed Oct 7, 2015
2 parents 441bad6 + 2bdfb40 commit 7072185
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/Performance.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -137,7 +137,7 @@ class ExpensiveScene extends React.Component {
if (this.state.renderPlaceholderOnly) {
return this._renderPlaceholderView();
}

return (
<View>
<Text>Your full view goes here</Text>
Expand Down

0 comments on commit 7072185

Please sign in to comment.