Skip to content

Commit

Permalink
Add ionic api file to gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
melonmanchan committed Apr 4, 2016
1 parent 3be5774 commit 9deb85a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -40,3 +40,4 @@ platforms
.vagrant/
SoAR-ARM.apk
SoARx86.apk
.io-config.json
2 changes: 1 addition & 1 deletion app/js/controllers/contacts.js
Expand Up @@ -106,7 +106,7 @@ angular.module('contacts', [])
}, 0);

} else {
if (cordova.plugins.Keyboard && cordova.plugins.Keyboard.isVisible === true) {
if (cordova && cordova.plugins.Keyboard.isVisible === true) {
cordova.plugins.Keyboard.close();
}
}
Expand Down
6 changes: 3 additions & 3 deletions app/js/services/confighandler.js
Expand Up @@ -52,9 +52,9 @@ angular.module('confighandler', [])
}
},
development: {
apiUrl: 'http://192.168.0.14:9000/',
apiUrl: 'http://130.233.84.100:9000/',
peerjs: {
host: '192.168.0.14',
host: '130.233.84.100',
port: 9000,
path: '/peerjs',
debug: 0,
Expand Down Expand Up @@ -86,7 +86,7 @@ angular.module('confighandler', [])
}
},
socketio: {
url: 'http://192.168.0.14:9000'
url: 'http://130.233.84.100:9000'
},
initialUserSettings: {
saveCalls: false,
Expand Down

0 comments on commit 9deb85a

Please sign in to comment.