Skip to content
This repository was archived by the owner on Jul 9, 2024. It is now read-only.

Commit eb078a5

Browse files
committed
Fix tests
1 parent ec06157 commit eb078a5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ const styles = StyleSheet.create({
2929
position: 'absolute',
3030
top: 0,
3131
left: 0,
32-
width:0.001,
33-
height:0.001
34-
},
32+
width: 0.001,
33+
height: 0.001
34+
}
3535
});
3636

3737
const BusyIndicator = React.createClass({
@@ -44,7 +44,7 @@ const BusyIndicator = React.createClass({
4444
text: React.PropTypes.string,
4545
textColor: React.PropTypes.string,
4646
textFontSize: React.PropTypes.number,
47-
textNumberOfLines: React.PropTypes.number,
47+
textNumberOfLines: React.PropTypes.number
4848
},
4949

5050
getDefaultProps() {
@@ -58,7 +58,7 @@ const BusyIndicator = React.createClass({
5858
text: 'Please wait...',
5959
textColor: '#f5f5f5',
6060
textFontSize: 14,
61-
textNumberOfLines:1,
61+
textNumberOfLines: 1
6262
};
6363
},
6464

0 commit comments

Comments
 (0)