X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/f436a5cd2ba7f1e86c73fab06eae2e8da188f79f..2e444eb7bbb48ff534a639d6d7bab022b02add8f:/app/views/site/_search.html.erb diff --git a/app/views/site/_search.html.erb b/app/views/site/_search.html.erb index 9adc3dafe..c074a49a3 100644 --- a/app/views/site/_search.html.erb +++ b/app/views/site/_search.html.erb @@ -10,34 +10,6 @@ zoom: args["zoom"] }, openSidebar); } - - function doSearch(query) { - $("#sidebar_title").html("<%= t 'site.sidebar.search_results' %>"); - - <% if params[:action] == 'index' -%> - var extent = unproj(map.getExtent()); - - $("#sidebar_content").load("<%= url_for :controller => :geocoder, :action => :search %>", { - query: $("#query").val(), - minlon: extent.left, - minlat: extent.bottom, - maxlon: extent.right, - maxlat: extent.top - }, openSidebar); - <% else -%> - $("#sidebar_content").load("<%= url_for :controller => :geocoder, :action => :search %>", { - query: $("#query").val() - }, openSidebar); - <% end -%> - } - - $(document).ready(function () { - $("#search_form").submit(function (event) { - doSearch($("#query").val()); - - return false; - }); - }); // --> @@ -45,9 +17,9 @@
- <%= form_tag "#", :id => "search_form" do %> + <%= form_tag url_for(:controller => :geocoder, :action => :search), :id => "search_form" do %> <%= submit_tag t('site.search.submit_text') %> - <%= text_field_tag :query, h(params[:query]), :tabindex => "1", :placeholder => t('site.search.search') %> + <%= text_field_tag :query, h(params[:query]), :tabindex => "1", :placeholder => t('site.search.search'), :autofocus => "autofocus" %> <% end %>