friendica/view/theme/frost-mobile/jot_geotag.tpl
2012-09-16 18:56:31 -06:00

12 lines
294 B
Smarty

if(navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
var lat = position.coords.latitude.toFixed(4);
var lon = position.coords.longitude.toFixed(4);
$j('#jot-coord').val(lat + ', ' + lon);
$j('#profile-nolocation-wrapper').show();
});
}