Flowdock
method

form_tag_with_body

Importance_0
v4.2.7 - Show latest stable - 0 notes - Class: ActionView::Helpers::FormTagHelper
form_tag_with_body(html_options, content) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionview/lib/action_view/helpers/form_tag_helper.rb, line 864
        def form_tag_with_body(html_options, content)
          output = form_tag_html(html_options)
          output << content
          output.safe_concat("</form>")
        end
Register or log in to add new notes.