private Method

Base.wrap_content_for_layout(content) { || ... }

There's no documentation for this item.

Source Code

# File action_view/base.rb, line 355
def wrap_content_for_layout(content)
  original_content_for_layout = @content_for_layout
  @content_for_layout = content
  returning(yield) { @content_for_layout = original_content_for_layout }
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.