aboutsummaryrefslogtreecommitdiffstats
path: root/view/jot_geotag.tpl
blob: c140d5627eb7d9647184ea7a159fb10c1ab02b62 (plain) (blame)
1
2
3
4
5
6
7
8
	if(navigator.geolocation) {
		navigator.geolocation.getCurrentPosition(function(position) {
			$('#jot-coord').val(position.coords.latitude + ',' + position.coords.longitude);
			$('#profile-nolocation-wrapper').show();
		});
	}