1
0
Fork 0
find-us-lunch/app/views/application/_flash_messages.html.erb
2014-10-15 13:50:58 -04:00

9 lines
302 B
Text

<% flash.each do |type, message| %>
<div class="alert <%= bootstrap_class_for(type) %> fade in" %>
<button type="button" class="close" data-dismiss="alert">
<span aria-hidden="true">&times;</span>
<span class="sr-only">Close</span>
</button>
<%= message %>
</div>
<% end %>