Update Exponent logo and links

Summary: Closes https://github.com/facebook/react-native/pull/7371

Differential Revision: D3257406

fb-gh-sync-id: 45d8800e84c19444ab0b2f24311b019e377fc776
fbshipit-source-id: 45d8800e84c19444ab0b2f24311b019e377fc776
This commit is contained in:
James Ide
2016-05-03 21:08:20 -07:00
committed by Facebook Github Bot 8
parent 785cc07589
commit 861dfb5d71
+8 -6
View File
@@ -67,8 +67,9 @@ var featured = [
},
{
name: 'Exponent',
icon: 'http://a4.mzstatic.com/us/r30/Purple2/v4/3a/d3/c9/3ad3c96c-5e14-f988-4bdd-0fdc95efd140/icon175x175.png',
link: 'http://exponentjs.com/',
icon: 'http://a1.mzstatic.com/us/r30/Purple20/v4/b0/26/72/b02672b5-d347-6df1-e20f-de5f5c039664/icon175x175.jpeg',
linkAppStore: 'https://itunes.apple.com/us/app/exponent/id982107779?mt=8',
linkPlayStore: 'https://play.google.com/store/apps/details?id=host.exp.exponent',
author: 'Exponent',
},
{
@@ -782,7 +783,7 @@ var apps = [
{
name: 'Trump Blocker - That Filters Every Link',
icon: 'http://a2.mzstatic.com/us/r30/Purple69/v4/e7/91/4c/e7914cbd-c405-8411-2173-e8ed59a901bd/icon175x175.jpeg',
link: 'https://itunes.apple.com/us/app/trump-blocker-that-filters/id1071733244?mt=8',
link: 'https://itunes.apple.com/us/app/trump-blocker-that-filters/id1071733244?mt=8',
author: 'Footbits, Inc.',
},
{
@@ -938,7 +939,7 @@ var AppList = React.createClass({
{app.linkAppStore && app.linkPlayStore ? this._renderLinks(app) : null}
<p>By {app.author}</p>
{this._renderBlogPosts(app)}
{this._renderSourceLink(app)}
{this._renderSourceLink(app)}
{this._renderVideos(app)}
</div>
);
@@ -980,7 +981,7 @@ var AppList = React.createClass({
);
},
_renderSourceLink: function(app) {
_renderSourceLink: function(app) {
if (!app.source) {
return;
}
@@ -1017,7 +1018,8 @@ var AppList = React.createClass({
_renderLinks: function(app) {
return (
<p>
<a href={app.linkAppStore} target="_blank">iOS</a> -&nbsp;
<a href={app.linkAppStore} target="_blank">iOS</a>
{' '}&middot;{' '}
<a href={app.linkPlayStore} target="_blank">Android</a>
</p>
);