aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/smarty3/jot_geotag.tpl
blob: 1ed2367aa5d483a3b58a9ec448ed6a10423d2ebf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{*
 *	AUTOMATICALLY GENERATED TEMPLATE
 *	DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
 *
 *}}

	if(navigator.geolocation) {
		navigator.geolocation.getCurrentPosition(function(position) {
			$('#jot-coord').val(position.coords.latitude + ' ' + position.coords.longitude);
			$('#profile-nolocation-wrapper').show();
		});
	}