From fe05f8beedd98a89c93a7ae687eec64645f08abc Mon Sep 17 00:00:00 2001 From: Travis CI Date: Tue, 26 Jan 2016 19:00:28 +0000 Subject: [PATCH] update website --- docs/listview.html | 4 ++-- docs/refreshcontrol.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/listview.html b/docs/listview.html index 4e6be0cc03a..07f1d529cc6 100644 --- a/docs/listview.html +++ b/docs/listview.html @@ -77,7 +77,7 @@ with horizontal={true}.

var ListViewSimpleExample = React.createClass({ statics: { - title: '<ListView> - Simple', + title: '<ListView>', description: 'Performant, scrollable list of data.' }, @@ -97,7 +97,7 @@ with horizontal={true}.

: function() { return ( <UIExplorerPage - title={this.props.navigator ? null : '<ListView> - Simple'} + title={this.props.navigator ? null : '<ListView>'} noSpacer={true} noScroll={true}> <ListView diff --git a/docs/refreshcontrol.html b/docs/refreshcontrol.html index 67ad7bc2570..95acd42390e 100644 --- a/docs/refreshcontrol.html +++ b/docs/refreshcontrol.html @@ -57,7 +57,7 @@ const RefreshControlExample = React: false, loaded: 0, rowData: Array.from(new Array(20)).map( - (val, i) => ({text: 'Initial row' + i, clicks: 0})), + (val, i) => ({text: 'Initial row ' + i, clicks: 0})), }; }, @@ -96,7 +96,7 @@ const RefreshControlExample = React // prepend 10 items const rowData = Array.from(new Array(10)) .map((val, i) => ({ - text: 'Loaded row' + (+this.state.loaded + i), + text: 'Loaded row ' + (+this.state.loaded + i), clicks: 0, })) .concat(this.state.rowData);