aboutsummaryrefslogtreecommitdiffstats
path: root/guides/code/getting_started/app/views/posts
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2012-07-18 06:41:50 -0700
committerRafael Mendonça França <rafaelmfranca@gmail.com>2012-07-18 06:41:50 -0700
commit35072161b5c116b17bee235b079148b770a27c8b (patch)
treef884067efeb47391844fa75118505410dee568f5 /guides/code/getting_started/app/views/posts
parentc08f30ff5fcda7e07cd9275a073acb2091e4b3f7 (diff)
parentfb8a830a329b78a5863c1dbfb70a4005d3de60ec (diff)
downloadrails-35072161b5c116b17bee235b079148b770a27c8b.tar.gz
rails-35072161b5c116b17bee235b079148b770a27c8b.tar.bz2
rails-35072161b5c116b17bee235b079148b770a27c8b.zip
Merge pull request #6614 from carlosgaldino/data-confirm
Remove `:confirm` in favor of `:data => { :confirm => 'Text' }` option
Diffstat (limited to 'guides/code/getting_started/app/views/posts')
-rw-r--r--guides/code/getting_started/app/views/posts/index.html.erb2
1 files changed, 1 insertions, 1 deletions
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 @@
<td><%= post.text %></td>
<td><%= link_to 'Show', :action => :show, :id => post.id %>
<td><%= link_to 'Edit', :action => :edit, :id => post.id %>
- <td><%= link_to 'Destroy', { :action => :destroy, :id => post.id }, :method => :delete, :confirm => 'Are you sure?' %>
+ <td><%= link_to 'Destroy', { :action => :destroy, :id => post.id }, :method => :delete, :data => { :confirm => 'Are you sure?' } %>
</tr>
<% end %>
</table>