]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/index.js
Fix mobile map and other minor mobile adjustments
[rails.git] / app / assets / javascripts / index.js
index c908f1e3490353d72d53d067e2ad614ff8560aa7..847c230b6e77ed3fc44d07fe917f3dedd3f26dcc 100644 (file)
@@ -4,7 +4,7 @@
 //= 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");
@@ -128,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();
+  }
 });