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