使用引导警报修复设计警报

时间:2017-11-30 16:35:21

标签: ruby-on-rails twitter-bootstrap devise alerts

在Rails上使用rubies构建它

设计尝试登录时失败  它将警报类型称为(警报)

我试图改变它以显示危险

GitHub commit changes

我提前道歉只是为了寻找一些帮助而花了不到3到4个月才做到这一点

My attempt to use a helper class to try to fix the situation the first time

<% flash.each do |type, msg| %>

<% if type === 'alert' %>

<% type = 'danger' %>

<% end %>

<%= content_tag :div, msg, class: "alert alert-#{type}", role:"alert" %>

<% end %>

</div>

0 个答案:

没有答案