you are in: codestackercodes [RSS] → tag: rails3 [RSS]

flash_messages helper method to rails 3 Delicious Email

show/hide lines
   1  def flash_messages 
   2    %w(notice warning error).each do |msg| 
   3      concat content_tag(:div, content_tag(:p, flash[msg.to_sym]), :class => msg) unless flash[msg.to_sym].blank? 
   4    end 
   5  end
created by leozera — 28 September 2010 — get a short url — tags: helper rails rails3 embed