aboutsummaryrefslogtreecommitdiffstats
path: root/guides/code/getting_started/app/views/comments
diff options
context:
space:
mode:
authorCarlos Galdino <carloshsgaldino@gmail.com>2012-06-01 16:54:21 -0300
committerCarlos Galdino <carloshsgaldino@gmail.com>2012-07-18 10:32:17 -0300
commitfb8a830a329b78a5863c1dbfb70a4005d3de60ec (patch)
treef884067efeb47391844fa75118505410dee568f5 /guides/code/getting_started/app/views/comments
parentc08f30ff5fcda7e07cd9275a073acb2091e4b3f7 (diff)
downloadrails-fb8a830a329b78a5863c1dbfb70a4005d3de60ec.tar.gz
rails-fb8a830a329b78a5863c1dbfb70a4005d3de60ec.tar.bz2
rails-fb8a830a329b78a5863c1dbfb70a4005d3de60ec.zip
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`
Diffstat (limited to 'guides/code/getting_started/app/views/comments')
-rw-r--r--guides/code/getting_started/app/views/comments/_comment.html.erb4
1 files changed, 2 insertions, 2 deletions
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 @@
<p>
<%= link_to 'Destroy Comment', [comment.post, comment],
- :confirm => 'Are you sure?',
- :method => :delete %>
+ :method => :delete,
+ :data => { :confirm => 'Are you sure?' } %>
</p>