]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/index.js
Wrap longitude values explicitly
[rails.git] / app / assets / javascripts / index.js
index 8afd3269d61d2aabf6ba3b4822f480ef4bab4fbe..e96ffbf02cffa713776da79b0b3864e45e38863b 100644 (file)
@@ -1,9 +1,10 @@
+//= require_self
 //= require index/browse
 //= require index/export
 //= require index/key
 
 $(document).ready(function () {
-  var permalinks = $("#permalink").html();
+  var permalinks = $("#permalink").detach().html();
   var marker;
   var params = OSM.mapParams();
   var map = createMap("map");
@@ -64,10 +65,10 @@ $(document).ready(function () {
   });
 
   function updateLocation() {
-    var center = map.getCenter();
+    var center = map.getCenter().wrap();
     var zoom = map.getZoom();
     var layers = getMapLayers();
-    var extents = map.getBounds();
+    var extents = map.getBounds().wrap();
 
     updatelinks(center.lng,
                 center.lat,
@@ -127,4 +128,10 @@ $(document).ready(function () {
   if ($("#query").val()) {
     $("#search_form").submit();
   }
+
+  // Focus the search field for browsers that don't support
+  // the HTML5 'autofocus' attribute
+  if (!("autofocus" in document.createElement("input"))) {
+    $("#query").focus();
+  }
 });