]> git.mxchange.org Git - friendica.git/blobdiff - view/jot_geotag.tpl
Merge pull request #369 from rdc/master
[friendica.git] / view / jot_geotag.tpl
index 835cc9ebb9d4d464d73ec936a665c02ebaaf0b14..b0f71e73bf1a21b558aa8946016cd06d9e0e3f98 100644 (file)
@@ -1,7 +1,8 @@
 
        if(navigator.geolocation) {
                navigator.geolocation.getCurrentPosition(function(position) {
-                       $('#jot-coord').val(position.coords.latitude + ',' + position.coords.longitude);
+                       $('#jot-coord').val(position.coords.latitude + ' ' + position.coords.longitude);
+                       $('#profile-nolocation-wrapper').show();
                });
        }