2010-10-20 03:58:01 +00:00
|
|
|
|
|
|
|
if(navigator.geolocation) {
|
|
|
|
navigator.geolocation.getCurrentPosition(function(position) {
|
2010-10-29 07:02:26 +00:00
|
|
|
$('#jot-coord').val(position.coords.latitude + position.coords.longitude);
|
2010-10-20 07:33:17 +00:00
|
|
|
$('#profile-nolocation-wrapper').show();
|
2010-10-20 03:58:01 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|