method
option_html_attributes
v7.0.0 -
Show latest stable
- Class:
ActionView::Helpers::FormOptionsHelper
option_html_attributes(element)private
No documentation available.
# File actionview/lib/action_view/helpers/form_options_helper.rb, line 784
def option_html_attributes(element)
if Array === element
element.select { |e| Hash === e }.reduce({}, :merge!)
else
{}
end
end