Module: PhantomHelpers::ViewHelpers::FlashHelper

Defined in:
lib/phantom_helpers/view_helpers/flash_helper.rb

Instance Method Summary collapse

Instance Method Details

#flash_color(type) ⇒ Object



5
6
7
8
9
10
11
12
# File 'lib/phantom_helpers/view_helpers/flash_helper.rb', line 5

def flash_color(type)
  case type
    when :notice then 'alert alert-info'
    when :success then 'alert alert-success'
    when :error then 'alert alert-danger'
    when :alert then 'alert alert-danger'
  end
end