aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2012-05-15 09:55:30 +0200
committerJosé Valim <jose.valim@gmail.com>2012-05-15 09:55:30 +0200
commita5c38a9c087e33d36397afc496be7c8e01b37ef0 (patch)
treed2442612a3eeb9f2da575bef9d47ca68d0f4e847 /guides/source
parent59b03d418ff59fe6bfba6a1b651ef0ac15a2738c (diff)
downloadrails-a5c38a9c087e33d36397afc496be7c8e01b37ef0.tar.gz
rails-a5c38a9c087e33d36397afc496be7c8e01b37ef0.tar.bz2
rails-a5c38a9c087e33d36397afc496be7c8e01b37ef0.zip
Revert "Remove `:disable_with` in favor of `'data-disable-with'` option from `submit_tag`, `button_tag` and `button_to` helpers."
`disable_with:` is much easier to type than `"data-disable-with" =>`, and the fact it uses "data-disable-with" => is an implementation concern, it should not affect the public API. This reverts commit 683fc4db00f496e5225928afb4d4e932e0fcdc48.
Diffstat (limited to 'guides/source')
-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 bfd007490a..cda9c64460 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, 'data-disable-with' => 'loading...')
+ :method => "delete", :remote => true, :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' data-disable-with='loading...' data-confirm='Are you sure?' />
+ <input value='Destroy' type='submit' disable_with='loading...' data-confirm='Are you sure?' />
</div>
</form>
</html>