diff options
author | Friendika <info@friendika.com> | 2011-01-05 02:32:18 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-01-05 02:32:18 -0800 |
commit | 16d26826105e9658d2409698709869f396e37a8f (patch) | |
tree | 7165e58f38cccdcb9ab726086df11e465e13ab8a | |
parent | 1b0ddc928d2dbeeeab80d6beec1abc0e7a29bdb5 (diff) | |
download | volse-hubzilla-16d26826105e9658d2409698709869f396e37a8f.tar.gz volse-hubzilla-16d26826105e9658d2409698709869f396e37a8f.tar.bz2 volse-hubzilla-16d26826105e9658d2409698709869f396e37a8f.zip |
fix geolocation
-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 4145c3111..b0f71e73b 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(); }); } |