pic_vert_app/app/helpers/application_helper.rb
2014-12-09 00:24:43 +01:00

16 lines
270 B
Ruby

# -*- encoding : utf-8 -*-
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