aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/jot_geotag.tpl
blob: 60f12885008cbfe20da8b7c738c7f90bb165e70e (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').attr('disabled', false);
		});
	}