25 lines
967 B
Text
25 lines
967 B
Text
<% if @results.empty? %>
|
|
<p class="search_results_entry"><%= t 'geocoder.results.no_results' %></p>
|
|
<% else %>
|
|
<% @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 %>
|