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