0
我正在使用rails-toastr gem(Rails 5.0.0.1),我想向烤麪包機添加一個關閉按鈕。rails-toastr:添加關閉按鈕
我跟着instructions和application.html.erb
添加鏈接toastr.css
和toastr.js
。然後,我創建了兩個文件app/assets/stylesheets
和app/assets/javascripts
下分別在後我加入了一行:
toastr.options.closeButton = true;
但烤麪包機不上來。
我在application_helper.rb
這個方法(這是我在application.html.erb
調用):
def custom_bootstrap_flash
flash_messages = []
flash.each do |type, message|
type = 'success' if type == 'notice'
type = 'error' if type == 'alert'
text = "<script>toastr.#{type}('#{message}');</script>"
flash_messages << text.html_safe if message
end
flash_messages.join("\n").html_safe
end
,但沒有兩個資產,這工作得很好(當然,但沒有關閉按鈕)。
任何想法?
有相同的問題:( –