friendica/view/jot_geotag.tpl

9 lines
232 B
Smarty
Raw Normal View History

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