diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-10-29 00:02:26 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-10-29 00:02:26 -0700 |
commit | f34c1ce66aae3ba32704840bd106194a5837754f (patch) | |
tree | eca3c71ba0bb82ac2cde853056e9a3c9b5d0412d /view | |
parent | 6301de10321733a6578e59347b6b54fbd534de06 (diff) | |
download | volse-hubzilla-f34c1ce66aae3ba32704840bd106194a5837754f.tar.gz volse-hubzilla-f34c1ce66aae3ba32704840bd106194a5837754f.tar.bz2 volse-hubzilla-f34c1ce66aae3ba32704840bd106194a5837754f.zip |
provide the means to tag link a person by full_name
Diffstat (limited to 'view')
-rw-r--r-- | view/jot_geotag.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/jot_geotag.tpl b/view/jot_geotag.tpl index c140d5627..4145c3111 100644 --- a/view/jot_geotag.tpl +++ b/view/jot_geotag.tpl @@ -1,7 +1,7 @@ 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(); }); } |