diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-08-22 21:05:53 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-08-22 21:05:53 -0300 |
commit | e12aa1b14a942365d4b6ee2f724e3eff3506e219 (patch) | |
tree | 14752fd5751e64df8e351353958ea00c7e1e2d0a /actionview | |
parent | 9cc74261d44485a82fd3e74161adbcfed9b1c579 (diff) | |
parent | 0387591c0528307cc664ad75697e683f2a3d9e80 (diff) | |
download | rails-e12aa1b14a942365d4b6ee2f724e3eff3506e219.tar.gz rails-e12aa1b14a942365d4b6ee2f724e3eff3506e219.tar.bz2 rails-e12aa1b14a942365d4b6ee2f724e3eff3506e219.zip |
Merge pull request #16647 from tjschuck/form_for_doc_options
Documentation update for form_for options
Diffstat (limited to 'actionview')
-rw-r--r-- | actionview/lib/action_view/helpers/form_tag_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/lib/action_view/helpers/form_tag_helper.rb b/actionview/lib/action_view/helpers/form_tag_helper.rb index b18f578183..7d1cdc5a68 100644 --- a/actionview/lib/action_view/helpers/form_tag_helper.rb +++ b/actionview/lib/action_view/helpers/form_tag_helper.rb @@ -35,10 +35,10 @@ module ActionView # This is helpful when you're fragment-caching the form. Remote forms get the # authenticity token from the <tt>meta</tt> tag, so embedding is unnecessary unless you # support browsers without JavaScript. - # * A list of parameters to feed to the URL the form will be posted to. # * <tt>:remote</tt> - If set to true, will allow the Unobtrusive JavaScript drivers to control the # submit behavior. By default this behavior is an ajax submit. # * <tt>:enforce_utf8</tt> - If set to false, a hidden input with name utf8 is not output. + # * Any other key creates standard HTML attributes for the tag. # # ==== Examples # form_tag('/posts') |