From 48e2341e794fae1ada78d0ffc430bc5031d3043d Mon Sep 17 00:00:00 2001
From: Website Deployment Script
Date: Thu, 14 Jul 2016 07:31:15 +0000
Subject: [PATCH] Updated docs for next
---
releases/next/docs/touchablehighlight.html | 2 +-
releases/next/docs/touchableopacity.html | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/releases/next/docs/touchablehighlight.html b/releases/next/docs/touchablehighlight.html
index 40e5b6ff33e..4cf892a5acc 100644
--- a/releases/next/docs/touchablehighlight.html
+++ b/releases/next/docs/touchablehighlight.html
@@ -8,7 +8,7 @@ backgroundColor of the wrapped view isn't explicitly set to an opaque color
<TouchableHighlight onPress={this._onPressButton}>
<Image
style={styles.button}
- source={require('image!myButton')}
+ source={require('./myButton.png')}
/>
</TouchableHighlight>
);
diff --git a/releases/next/docs/touchableopacity.html b/releases/next/docs/touchableopacity.html
index 268a2e9edac..fed8e96e559 100644
--- a/releases/next/docs/touchableopacity.html
+++ b/releases/next/docs/touchableopacity.html
@@ -6,7 +6,7 @@ easy to add to an app without weird side-effects.
Example:
={this._onPressButton}>
<Image
style={styles.button}
- source={require('image!myButton')}
+ source={require('./myButton.png')}
/>
</TouchableOpacity>
);