Module: FlashMessenger::ViewHelper

Includes:
Helper
Defined in:
lib/flash-messenger/view_helper.rb

Instance Method Summary collapse

Methods included from Helper

#flash_messenger, #push_flash

Instance Method Details

#show_flashObject



5
6
7
8
9
10
# File 'lib/flash-messenger/view_helper.rb', line 5

def show_flash
  flash.map do |type, message|
    push_flash(message, :type => type)
  end
  javascript_tag "flash.show(#{flash_messenger.to_json});" unless flash_messenger.empty?
end