Commit 601c310b authored by Chris Scott's avatar Chris Scott

Merge pull request #33 from M165437/master

Add missing comma to example code
parents 3afd0a46 2a643582
......@@ -71,7 +71,7 @@ A full example could be:
bgGeo.configure(callbackFn, failureFn, {
url: 'http://only.for.android.com/update_location.json', // <-- only required for Android; ios allows javascript callbacks for your http
params: { // HTTP POST params sent to your server when persisting locations.
auth_token: 'user_secret_auth_token'
auth_token: 'user_secret_auth_token',
foo: 'bar'
},
desiredAccuracy: 10,
......
......@@ -92,7 +92,7 @@ var app = {
bgGeo.configure(callbackFn, failureFn, {
url: 'http://only.for.android.com/update_location.json', // <-- only required for Android; ios allows javascript callbacks for your http
params: { // HTTP POST params sent to your server when persisting locations.
auth_token: 'user_secret_auth_token'
auth_token: 'user_secret_auth_token',
foo: 'bar'
},
desiredAccuracy: 10,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment