Created
January 7, 2011 19:48
-
-
Save hwrdprkns/769984 to your computer and use it in GitHub Desktop.
Error Messages Partial
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= flash.each do |key,value| %> | |
<div class="flash <%= key %> span-22 last prepend-1"> | |
<%= value %> | |
</div> | |
<% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The problem with this gist was that the ruby hash was being printed below the partial. See here: http://i.imgur.com/LL0jI.png .
To fix this, the line <%= flash.each ... should be changed to <% flash.each
That way it doesn't print out the extra hash when it is done iterating.