Skip to content

Commit

Permalink
Final changes before publishing online
Browse files Browse the repository at this point in the history
  • Loading branch information
nashvail committed Feb 12, 2016
1 parent 6f72f41 commit 9274198
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion ProgressHUD.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ var React = require('react-native');

var {
View,
Text,
Component,
ActivityIndicatorIOS,
} = React;
Expand All @@ -20,7 +21,7 @@ class ProgressHUD extends Component {
<View
style={{
flex: 1,
flexDirection: 'row',
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
width: width,
Expand All @@ -35,6 +36,7 @@ class ProgressHUD extends Component {
color={'#fff'}
size={'large'}
style={{margin: 15}} />
<Text style={{color:'#fff'}}>Please wait...</Text>
</View>

);
Expand Down
4 changes: 2 additions & 2 deletions index.ios.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ class SplashWalls extends Component{
.then( jsonData => {
var randomIds = RandManager.uniqueRandomNumbers(NUM_WALLPAPERS, 0, jsonData.length);
var walls = [];
randomIds.forEach(index => {
walls.push(jsonData[index]);
randomIds.forEach(randomId => {
walls.push(jsonData[randomId]);
});

this.setState({
Expand Down

0 comments on commit 9274198

Please sign in to comment.