X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/f6ac8ffbab8b9fee13bbcf7537cabb460eb40aae..3cb0613db18dba1b42bb72a89e75dd15489aa541:/app/assets/javascripts/index.js diff --git a/app/assets/javascripts/index.js b/app/assets/javascripts/index.js index 8afd3269d..5cf9c15ff 100644 --- a/app/assets/javascripts/index.js +++ b/app/assets/javascripts/index.js @@ -1,3 +1,4 @@ +//= require_self //= require index/browse //= require index/export //= require index/key @@ -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(); + } });