chien_app/app/helpers/application_helper.rb
Nicolas Bally a1bba5a836 initial
2015-04-16 23:54:52 +02:00

15 lines
243 B
Ruby

module ApplicationHelper
def flash_js
r = raw ("$('#flashs').append('"+ escape_javascript(bootstrap_flash) +"');flash_delay();")
flash[:notice] = nil
flash[:error] = nil
flash[:success] = nil
r
end
end