Replace some inline javascript with a UJS solution
This commit is contained in:
parent
8bb7cdb75a
commit
e84b2bd22f
3 changed files with 18 additions and 12 deletions
|
@ -7,20 +7,11 @@
|
|||
<% end %>
|
||||
</ul>
|
||||
<% if @more_params %>
|
||||
<div id="search_more_<%= @more_params.hash %>">
|
||||
<div class="search_more">
|
||||
<div class="inner12 search_results_entry">
|
||||
<%= link_to t('geocoder.results.more_results'), "#", :class => "button" %>
|
||||
<%= link_to t('geocoder.results.more_results'), url_for(@more_params), :class => "button" %>
|
||||
</div>
|
||||
<%= image_tag "searching.gif", :class => "search_searching" %>
|
||||
<%= image_tag "searching.gif", :class => ["search_searching", "hidden"] %>
|
||||
</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 %>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue