Skip to content

Instantly share code, notes, and snippets.

@jgmartin
Created August 7, 2012 02:26
Show Gist options
  • Save jgmartin/3280800 to your computer and use it in GitHub Desktop.
Save jgmartin/3280800 to your computer and use it in GitHub Desktop.
haml bootstrap flash message
- flash.each do |type, msg|
%div{:class => "alert alert-#{type == :notice ? "success" : type} fadeout", "data-dismiss" => "alert"}
%a.close x
= msg if msg.is_a?(String)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment