protected Method

InstanceMethods.flash_with_components(refresh = false)

There's no documentation for this item.

Source Code

# File action_controller/components.rb, line 98
def flash_with_components(refresh = false) #:nodoc:
  if !defined?(@_flash) || refresh
    @_flash =
      if defined?(@parent_controller)
        @parent_controller.flash
      else
        flash_without_components
      end
  end
  @_flash
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.