]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/geocoder/results.html.erb
Use link_to and form_tag instead of link_to_remote and form_remote_tag
[rails.git] / app / views / geocoder / results.html.erb
index 70051c91c9b3bbeb53cf0b5e419ab0640700197d..b4bbdc267f40e4bd2f3983ef07f4b2b0f3b18822 100644 (file)
@@ -4,4 +4,14 @@
   <% @results.each do |result| %>
     <p class="search_results_entry"><%= result_to_html(result) %></p>
   <% end %>
+  <% if @more_params %>
+    <div id="search_more_<%= @more_params.hash %>">
+      <p class="search_results_entry"><%=
+        link_to_function(t('geocoder.results.more_results')) do |page|
+          page.replace_html "search_more_#{@more_params.hash}", image_tag("searching.gif", :class => "search_searching")
+          page << remote_function(:update => "search_more_#{@more_params.hash}", :url => raw(url_for(@more_params)))
+        end
+      %></p>
+    </div>
+  <% end %>
 <% end %>