php_app/app/helpers/application_helper.rb
Nicolas Bally 5cf3a3e83d initial
2014-11-25 22:56:20 +01: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