aboutsummaryrefslogtreecommitdiffstats
path: root/view/jot_geotag.tpl
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-01-05 02:32:18 -0800
committerFriendika <info@friendika.com>2011-01-05 02:32:18 -0800
commit16d26826105e9658d2409698709869f396e37a8f (patch)
tree7165e58f38cccdcb9ab726086df11e465e13ab8a /view/jot_geotag.tpl
parent1b0ddc928d2dbeeeab80d6beec1abc0e7a29bdb5 (diff)
downloadvolse-hubzilla-16d26826105e9658d2409698709869f396e37a8f.tar.gz
volse-hubzilla-16d26826105e9658d2409698709869f396e37a8f.tar.bz2
volse-hubzilla-16d26826105e9658d2409698709869f396e37a8f.zip
fix geolocation
Diffstat (limited to 'view/jot_geotag.tpl')
-rw-r--r--view/jot_geotag.tpl2
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();
});
}