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