X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/f6ac8ffbab8b9fee13bbcf7537cabb460eb40aae..3bce9ceee59e3f47bb93e8de9bc9192163f70cfb:/app/assets/javascripts/index.js diff --git a/app/assets/javascripts/index.js b/app/assets/javascripts/index.js index 8afd3269d..847c230b6 100644 --- a/app/assets/javascripts/index.js +++ b/app/assets/javascripts/index.js @@ -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"); @@ -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(); + } });