aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/jot_geotag.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'view/tpl/jot_geotag.tpl')
-rwxr-xr-xview/tpl/jot_geotag.tpl7
1 files changed, 7 insertions, 0 deletions
diff --git a/view/tpl/jot_geotag.tpl b/view/tpl/jot_geotag.tpl
new file mode 100755
index 000000000..60f128850
--- /dev/null
+++ b/view/tpl/jot_geotag.tpl
@@ -0,0 +1,7 @@
+ if(navigator.geolocation) {
+ navigator.geolocation.getCurrentPosition(function(position) {
+ $('#jot-coord').val(position.coords.latitude + ' ' + position.coords.longitude);
+ $('#profile-nolocation-wrapper').attr('disabled', false);
+ });
+ }
+