14 lines
305 B
Ruby
Executable File
14 lines
305 B
Ruby
Executable File
module ApplicationHelper
|
|
include NumberFormattable
|
|
|
|
def flash_class(level)
|
|
case level
|
|
when :notice then "alert alert-info fade-in"
|
|
when :success then "alert alert-success fade-in"
|
|
when :error then "alert alert-warning fade-in"
|
|
when :alert then "alert alert-danger fade-in"
|
|
end
|
|
end
|
|
|
|
end
|