Skip to content

Commit

Permalink
[TIMOB-10169] Fixed the geocoder for mobile web so that it wasn't cra…
Browse files Browse the repository at this point in the history
…shing the browser.
  • Loading branch information
cb1kenobi committed Jul 27, 2012
1 parent a0cb591 commit c00d288
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Resources/geo.js
Expand Up @@ -49,8 +49,8 @@ var forwardGeocodeWeb = function(address, callback) {
if (status == google.maps.GeocoderStatus.OK) {
callback(new GeoData(
address,
results[0].geometry.location.Ua,
results[0].geometry.location.Va
results[0].geometry.location.lat(),
results[0].geometry.location.lng()
));
} else {
Ti.API.error(status);
Expand Down

0 comments on commit c00d288

Please sign in to comment.