@@ -46,7 +46,7 @@ var GiftedListView = React.createClass({
46
46
withSections : false ,
47
47
onFetch ( page , callback , options ) { callback ( [ ] ) ; } ,
48
48
49
- paginationFetchigView : null ,
49
+ paginationFetchingView : null ,
50
50
paginationAllLoadedView : null ,
51
51
paginationWaitingView : null ,
52
52
refreshableFetchingView : null ,
@@ -74,7 +74,7 @@ var GiftedListView = React.createClass({
74
74
withSections : React . PropTypes . bool ,
75
75
onFetch : React . PropTypes . func ,
76
76
77
- paginationFetchigView : React . PropTypes . func ,
77
+ paginationFetchingView : React . PropTypes . func ,
78
78
paginationAllLoadedView : React . PropTypes . func ,
79
79
paginationWaitingView : React . PropTypes . func ,
80
80
refreshableFetchingView : React . PropTypes . func ,
@@ -93,9 +93,9 @@ var GiftedListView = React.createClass({
93
93
_getRows ( ) { return this . _rows ; } ,
94
94
95
95
96
- paginationFetchigView ( ) {
97
- if ( this . props . paginationFetchigView ) {
98
- return this . props . paginationFetchigView ( ) ;
96
+ paginationFetchingView ( ) {
97
+ if ( this . props . paginationFetchingView ) {
98
+ return this . props . paginationFetchingView ( ) ;
99
99
}
100
100
101
101
return (
@@ -376,7 +376,7 @@ var GiftedListView = React.createClass({
376
376
377
377
_renderPaginationView ( ) {
378
378
if ( ( this . state . paginationStatus === 'fetching' && this . props . pagination === true ) || ( this . state . paginationStatus === 'firstLoad' && this . props . firstLoader === true ) ) {
379
- return this . paginationFetchigView ( ) ;
379
+ return this . paginationFetchingView ( ) ;
380
380
} else if ( this . state . paginationStatus === 'waiting' && this . props . pagination === true && ( this . props . withSections === true || this . _getRows ( ) . length > 0 ) ) {
381
381
return this . paginationWaitingView ( this . _onPaginate ) ;
382
382
} else if ( this . state . paginationStatus === 'allLoaded' && this . props . pagination === true ) {
0 commit comments