Skip to content

Instantly share code, notes, and snippets.

@coreyjs
Created October 21, 2014 16:31
Show Gist options
  • Save coreyjs/a0e7472b1485a165e2d6 to your computer and use it in GitHub Desktop.
Save coreyjs/a0e7472b1485a165e2d6 to your computer and use it in GitHub Desktop.
Display Rails Flash Messages
<% flash.each do |name, msg| %>
<% if msg.class == Array %>
<% msg.each do |message| %>
<%= content_tag :div, message, :id => "flash_#{name}" %>
<% end %>
<% else %>
<%= content_tag :div, msg, :id => "flash_#{name}" %>
<% end %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment