Skip to content

Instantly share code, notes, and snippets.

@mdeiters
Created April 29, 2010 10:01
Show Gist options
  • Save mdeiters/383390 to your computer and use it in GitHub Desktop.
Save mdeiters/383390 to your computer and use it in GitHub Desktop.
<%= javascript_include_tag :defaults %>
<td>
<%= link_to 'Edit', edit_game_path(game) %> |
<%= link_to_remote 'Delete',
:url => game_path(game),
:method => :delete,
:confirm => 'Are you sure you want to delete?' %>
</td>
def destroy
@game = Game.find(params[:id])
@game.destroy
render :js => "$('#{dom_id(@game)}').remove();"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment