Skip to content

Instantly share code, notes, and snippets.

@tombeynon
Last active December 12, 2015 05:39
Show Gist options
  • Save tombeynon/4723507 to your computer and use it in GitHub Desktop.
Save tombeynon/4723507 to your computer and use it in GitHub Desktop.
Display Rails flash alerts
<% [:error, :alert, :notice].each do |key| %>
<%= "<div class='message #{key}'>#{flash[key]}</div>".html_safe if flash[key].present? %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment