]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/index.js
Merge branch 'master' into notes
[rails.git] / app / assets / javascripts / index.js
index c90d96c3997d93219c95293c8fd192f1bb27a7cc..dc5c40bf2eb5d8af589c7885fa7de25077714f97 100644 (file)
@@ -129,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();
+  }
 });