method
template_exempt_from_layout?
template_exempt_from_layout?(template_name = default_template_name)
private
Hide source
# File actionpack/lib/action_controller/base.rb, line 993 def template_exempt_from_layout?(template_name = default_template_name) template_name =~ /\.rjs$/ || (@template.pick_template_extension(template_name) == :rjs rescue false) end


