Skip to content

Commit 21f0b00

Browse files
author
yuji
committed
fixes #6 defined propType error. (thanks @benjamingeorge)
1 parent ddbc485 commit 21f0b00

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ exports['default'] = _React$StyleSheet$Text$View$ScrollView$TouchableOpacity2['d
139139
autoplayTimeout: _React$StyleSheet$Text$View$ScrollView$TouchableOpacity2['default'].PropTypes.number,
140140
autoplayDirection: _React$StyleSheet$Text$View$ScrollView$TouchableOpacity2['default'].PropTypes.bool,
141141
index: _React$StyleSheet$Text$View$ScrollView$TouchableOpacity2['default'].PropTypes.number,
142-
renderPagination: _React$StyleSheet$Text$View$ScrollView$TouchableOpacity2['default'].PropTypes['function'] },
142+
renderPagination: _React$StyleSheet$Text$View$ScrollView$TouchableOpacity2['default'].PropTypes.func },
143143

144144
mixins: [_TimerMixin2['default']],
145145

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ export default React.createClass({
130130
autoplayTimeout : React.PropTypes.number,
131131
autoplayDirection : React.PropTypes.bool,
132132
index : React.PropTypes.number,
133-
renderPagination : React.PropTypes.function,
133+
renderPagination : React.PropTypes.func,
134134
},
135135

136136
mixins: [TimerMixin],

0 commit comments

Comments
 (0)