Skip to content

Instantly share code, notes, and snippets.

@DamirSvrtan
Created March 29, 2014 16:41
Show Gist options
  • Save DamirSvrtan/9857742 to your computer and use it in GitHub Desktop.
Save DamirSvrtan/9857742 to your computer and use it in GitHub Desktop.
Rails Flash Messages Helper
def flash_messages
content_tag :div, class: "flash-messages" do
flash.map do |key, value|
content_tag :div, class: "alert alert-dismissable alert-#{key}" do
content_tag(:span, '×'.html_safe, class: :close, 'data-dismiss' => 'alert') + value
end
end.join().html_safe
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment