Re: Code Reduction
[Note: parts of this message were removed to make it a legal post.]
Hey,
If you call your CSS class for a `notice' flash NoticeMessage isntead of
just Message, you can make it simple like this:
<% flash.each do |k, v| %>
<% if v %>
<div class="MessageWrapper">
<span class="<%= k.to_s.capitalize %>Message">
<%= v %>
</span>
</div>
<% end %>
<% end %>
Cheers,
Arlen.
|