creddit/app/helpers/application_helper.rb

17 lines
319 B
Ruby
Raw Normal View History

2015-07-08 10:24:41 -04:00
module ApplicationHelper
def bootstrap_class_for(flash_type)
bootstrap_classes[flash_type] || flash_type.to_s
end
private
def bootstrap_classes
2015-07-16 11:57:27 -04:00
{
'alert' => 'alert-warning',
'error' => 'alert-danger',
'notice' => 'alert-info',
'success' => 'alert-success'
}
end
2015-07-08 10:24:41 -04:00
end