Skip to content

Instantly share code, notes, and snippets.

@venriq
Last active August 29, 2015 14:00
Show Gist options
  • Save venriq/5afc37a9849767c01e0d to your computer and use it in GitHub Desktop.
Save venriq/5afc37a9849767c01e0d to your computer and use it in GitHub Desktop.
<%= link_to my_path, method: :delete, confirm: 'Delete?', class: 'link-delete', 'data-message' => 'Are you sure?', 'data-severity' => 'danger', :remote => true do %>
<i class="icon-trash"></i>
<% end %>
$('.link-delete).bind('ajax:beforeSend', function() {
$('#mySpinner').show();
});
$('.link-delete).bind('ajax:complete', function() {
$('#mySpinner').hide();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment