2017-03-10 106 views
0

我正在使用rails-toastr gem(Rails 5.0.0.1),我想向烤麪包機添加一個關閉按鈕。rails-toastr:添加關閉按鈕

我跟着instructionsapplication.html.erb添加鏈接toastr.csstoastr.js。然後,我創建了兩個文件app/assets/stylesheetsapp/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 

,但沒有兩個資產,這工作得很好(當然,但沒有關閉按鈕)。

任何想法?

+0

有相同的問題:( –

回答

0

我不知道,但它看起來像CodeSeven/toastr過時,不再維持。

我有同樣的問題,但我解決了這個問題,通過使用另一個toastr gem這是目前功能齊全,可以「看到」toastr選項。我希望它能幫助你或任何其他面臨這種問題的人。