provide the means to tag link a person by full_name

This commit is contained in:
Mike Macgirvin 2010-10-29 00:02:26 -07:00
commit f34c1ce66a
2 changed files with 18 additions and 8 deletions

View file

@ -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();
});
}