]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/frost-mobile/templates/jot_geotag.tpl
eliminate Cropper conflicts with jQuery
[friendica.git] / view / theme / frost-mobile / templates / jot_geotag.tpl
index d828980e586d70130280885af16cee8bf4fa166c..3a87346dba463f08d1da4c3249556bac7c115604 100644 (file)
@@ -1,16 +1,11 @@
-{{*
- *     AUTOMATICALLY GENERATED TEMPLATE
- *     DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
- *
- *}}
 
        if(navigator.geolocation) {
                navigator.geolocation.getCurrentPosition(function(position) {
                        var lat = position.coords.latitude.toFixed(4);
                        var lon = position.coords.longitude.toFixed(4);
 
-                       $j('#jot-coord').val(lat + ', ' + lon);
-                       $j('#profile-nolocation-wrapper').show();
+                       $('#jot-coord').val(lat + ', ' + lon);
+                       $('#profile-nolocation-wrapper').show();
                });
        }