0
x
をクリックしても通知が消えない。Railsアプリケーションで `x`をクリックするとブートストラップアラートが消えない
必須のCSSクラスがないとは思わないので、なぜこれが動作しないのか分かりません。
x
をクリックする前に:
x
をクリックした後:
application.html.erb
<html>
<body>
...
<% if flash[:notice] %>
<div class="alert alert-success alert-dismissible fade out in">
<button type="button" class="close" data-dismiss="alert">
<span>×</span>
</button>
<%= flash[:notice] %>
</div>
<% elsif flash[:error] %>
<div class="alert alert-danger alert-dismissible fade out in">
<button class="close" data-dismiss="alert">×</button>
<% flash[:error].each do |msg| %>
<li>
<%= msg %>
</li>
<% end %>
</div>
<% elsif flash[:alert] %>
<div class="alert alert-warning alert-dismissible fade out in">
<button type="button" class="close" data-dismiss="alert">×</button>
<%= flash[:alert] %>
</div>
<% end %>
</body>
</html>
Gemfile.rb
gem 'bootstrap-sass'
application.scss
@import 'bootstrap-sprockets';
@import 'bootstrap';
あなたは私がしようとすることをお勧めすることができます何か他のものはありますか?
に
@import 'bootstrap-sprockets';
に加えて必要とされた気づいていませんでしたか? – Ren