aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorCarlos Galdino + Rafael Mendonça França <rafael.franca+carlos.galdino@plataformatec.com.br>2012-05-14 16:40:43 -0300
committerCarlos Galdino + Rafael Mendonça França <rafael.franca+carlos.galdino@plataformatec.com.br>2012-05-14 16:42:19 -0300
commit683fc4db00f496e5225928afb4d4e932e0fcdc48 (patch)
tree1bcca364dd8559b3b42fbfeaed31a7ceed815f27 /guides
parentc5bcb0de6b5a805a3c9556684715b5cd463dc0c8 (diff)
downloadrails-683fc4db00f496e5225928afb4d4e932e0fcdc48.tar.gz
rails-683fc4db00f496e5225928afb4d4e932e0fcdc48.tar.bz2
rails-683fc4db00f496e5225928afb4d4e932e0fcdc48.zip
Remove `:disable_with` in favor of `'data-disable-with'` option from `submit_tag`, `button_tag` and `button_to` helpers.
Diffstat (limited to 'guides')
-rw-r--r--guides/source/ajax_on_rails.textile4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/ajax_on_rails.textile b/guides/source/ajax_on_rails.textile
index cda9c64460..bfd007490a 100644
--- a/guides/source/ajax_on_rails.textile
+++ b/guides/source/ajax_on_rails.textile
@@ -78,7 +78,7 @@ will produce
<ruby>
button_to('Destroy', 'http://www.example.com', :confirm => 'Are you sure?',
- :method => "delete", :remote => true, :disable_with => 'loading...')
+ :method => "delete", :remote => true, 'data-disable-with' => 'loading...')
</ruby>
will produce
@@ -87,7 +87,7 @@ will produce
<form class='button_to' method='post' action='http://www.example.com' data-remote='true'>
<div>
<input name='_method' value='delete' type='hidden' />
- <input value='Destroy' type='submit' disable_with='loading...' data-confirm='Are you sure?' />
+ <input value='Destroy' type='submit' data-disable-with='loading...' data-confirm='Are you sure?' />
</div>
</form>
</html>