Skip to content

Instantly share code, notes, and snippets.

@alexishida
Created March 12, 2018 16:45
Show Gist options
  • Select an option

  • Save alexishida/602b3b354a9a2ee07b45b4a8b2bc49af to your computer and use it in GitHub Desktop.

Select an option

Save alexishida/602b3b354a9a2ee07b45b4a8b2bc49af to your computer and use it in GitHub Desktop.
flahs notifications bootstrap rails
<% if notice || alert %>
<% t = 'success' if notice %>
<% t = 'danger' if alert %>
<%
if notice && notice.split('^')[0] == 'warning'
t = 'warning'
m = notice.split('^')[1]
else
m = notice || alert
end
%>
<% if m %>
<div class="alert alert-<%= t %> alert-bordered">
<button type="button" class="close" data-dismiss="alert"><span>&times;</span><span class="sr-only">Fechar</span></button>
<%= m.html_safe %>
</div>
<% end %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment