X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/05eba790089d8e70d3061cb07f6d40720aee6010..76559d3de23b3af28b6d2014d12ed48d0cfc74cd:/app/assets/javascripts/index.js diff --git a/app/assets/javascripts/index.js b/app/assets/javascripts/index.js index c908f1e34..dc5c40bf2 100644 --- a/app/assets/javascripts/index.js +++ b/app/assets/javascripts/index.js @@ -2,6 +2,7 @@ //= require index/browse //= require index/export //= require index/key +//= require index/notes $(document).ready(function () { var permalinks = $("#permalink").html(); @@ -128,4 +129,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(); + } });