]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/user.js
Make the timestamp for a diary comment into a permalink for it
[rails.git] / app / assets / javascripts / user.js
index 7de408b20506eb545ce0b359c3768ef7af828e0c..d31f5bb82679f2ae6415631876820fab9401141c 100644 (file)
@@ -24,12 +24,12 @@ $(document).ready(function () {
     map.on("click", function (e) {
       if ($('#updatehome').is(':checked')) {
         var zoom = map.getZoom(),
-            toZoom = zoomPrecision(zoom),
+            precision = zoomPrecision(zoom),
             location = e.latlng.wrap();
 
         $('#homerow').removeClass();
-        $('#home_lat').val(toZoom(location.lat));
-        $('#home_lon').val(toZoom(location.lng));
+        $('#home_lat').val(location.lat.toFixed(precision));
+        $('#home_lon').val(location.lng.toFixed(precision));
 
         marker.setLatLng(e.latlng);
         marker.addTo(map);