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/comments/_comment.html.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'guides/code/getting_started/app/views/comments') diff --git a/guides/code/getting_started/app/views/comments/_comment.html.erb b/guides/code/getting_started/app/views/comments/_comment.html.erb index 0cebe0bd96..3d2bc1590e 100644 --- a/guides/code/getting_started/app/views/comments/_comment.html.erb +++ b/guides/code/getting_started/app/views/comments/_comment.html.erb @@ -10,6 +10,6 @@

<%= link_to 'Destroy Comment', [comment.post, comment], - :confirm => 'Are you sure?', - :method => :delete %> + :method => :delete, + :data => { :confirm => 'Are you sure?' } %>

-- cgit v1.2.3