Method: Formtastic::Inputs::Base::Choices#legend_html

Defined in:
lib/formtastic/inputs/base/choices.rb

#legend_htmlObject



89
90
91
92
93
94
95
96
97
98
# File 'lib/formtastic/inputs/base/choices.rb', line 89

def legend_html
  if render_label?
    template.(:legend,
      template.(:label, label_text),
      label_html_options.merge(:class => "label")
    )
  else
    +"".html_safe
  end
end