Cross Reference: flash_helper.rb
xref
: /
ontohub
/
app
/
helpers
/
flash_helper.rb
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
flash_helper.rb revision 0be38598001e15ea877bf3d4807e941159753df2
883
N/A
module
FlashHelper
883
N/A
883
N/A
def
flash_messages
883
N/A
out
=
''
883
N/A
flash.each
do
|
type
,
message
|
883
N/A
unless
type
== :
recaptcha_error
883
N/A
out
<< content_tag
(:div, message, :class => "flash #{type}")
883
N/A
end
883
N/A
end
883
N/A
out.html_safe
883
N/A
end
883
N/A
883
N/A
end
883
N/A