method
_normalize_options
v7.1.3.4 -
Show latest stable
- Class:
ActionView::Layouts
_normalize_options(options)public
No documentation available.
# File actionview/lib/action_view/layouts.rb, line 352
def _normalize_options(options) # :nodoc:
super
if _include_layout?(options)
layout = options.delete(:layout) { :default }
options[:layout] = _layout_for_option(layout)
end
end