friendica/view/jot_geotag.tpl

9 wiersze
232 B
Smarty
Czysty Zwykły widok Historia

if(navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
2011-01-05 10:32:18 +00:00
$('#jot-coord').val(position.coords.latitude + ' ' + position.coords.longitude);
$('#profile-nolocation-wrapper').show();
});
}