]> git.mxchange.org Git - friendica.git/blob - view/templates/jot_geotag.tpl
wrapping up 2019.12
[friendica.git] / view / templates / jot_geotag.tpl
1
2
3         if(navigator.geolocation) {
4                 navigator.geolocation.getCurrentPosition(function(position) {
5                         $('#jot-coord').val(position.coords.latitude + ' ' + position.coords.longitude);
6                         $('#profile-nolocation-wrapper').show();
7                 });
8         }
9