From fb8a830a329b78a5863c1dbfb70a4005d3de60ec Mon Sep 17 00:00:00 2001 From: Carlos Galdino Date: Fri, 1 Jun 2012 16:54:21 -0300 Subject: Remove `:confirm` in favor of `:data => { :confirm => 'Text' }` option This applies to the following helpers: `button_to` `button_tag` `image_submit_tag` `link_to` `submit_tag` --- guides/code/getting_started/app/views/posts/index.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'guides/code/getting_started/app/views/posts') diff --git a/guides/code/getting_started/app/views/posts/index.html.erb b/guides/code/getting_started/app/views/posts/index.html.erb index 7b72720d50..9a0e90eadc 100644 --- a/guides/code/getting_started/app/views/posts/index.html.erb +++ b/guides/code/getting_started/app/views/posts/index.html.erb @@ -17,7 +17,7 @@ <%= post.text %> <%= link_to 'Show', :action => :show, :id => post.id %> <%= link_to 'Edit', :action => :edit, :id => post.id %> - <%= link_to 'Destroy', { :action => :destroy, :id => post.id }, :method => :delete, :confirm => 'Are you sure?' %> + <%= link_to 'Destroy', { :action => :destroy, :id => post.id }, :method => :delete, :data => { :confirm => 'Are you sure?' } %> <% end %> -- cgit v1.2.3