Merge commit '9ec6f1c5289' into 0.2

This commit is contained in:
Anna Sobiepanek 2011-01-11 11:21:08 -05:00
Родитель c87c378eae 9ec6f1c528
Коммит 23d441321d
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -81,8 +81,8 @@ var googleCallback;
var geocoder = new google.maps.Geocoder();
geocoder.geocode({ 'address': options.location}, function(results, status) {
if (status === google.maps.GeocoderStatus.OK) {
options.lat = results[0].geometry.location.wa;
options.long = results[0].geometry.location.ya;
options.lat = results[0].geometry.location.lat();
options.long = results[0].geometry.location.lng();
}
});
}