]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/geocoder/results.html.erb
Mobile layout improvements
[rails.git] / app / views / geocoder / results.html.erb
index 70051c91c9b3bbeb53cf0b5e419ab0640700197d..61d28697d715f6caf99568ae9c3afcd0e2a9267f 100644 (file)
@@ -4,4 +4,22 @@
   <% @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 t('geocoder.results.more_results'), "#" %>
+      </p>
+      <%= image_tag "searching.gif", :class => "search_searching" %>
+    </div>
+    <script type="text/javascript">
+    $("#search_more_<%= @more_params.hash %> .search_searching").hide();
+
+    $("#search_more_<%= @more_params.hash %> a").click(function () {
+      $("#search_more_<%= @more_params.hash %> .search_results_entry").hide();
+      $("#search_more_<%= @more_params.hash %> .search_searching").show();
+
+      $("#search_more_<%= @more_params.hash %>").load("<%= raw url_for(@more_params) %>");
+    });
+    </script>
+  <% end %>
 <% end %>