-
-
Save JoshCheek/608991 to your computer and use it in GitHub Desktop.
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
<!-- It is probably easier to read if you initialize item_images to be an empty hash --> | |
<% @item.item_images ||= Hash.new %> | |
<% @item.item_images.each do |key, image| %> | |
<img src="<%= image.path %>" width="397" <% if key != 0 %>style="display:none"<% end %> /> | |
<% end %> | |
<!-- Or return a default value for when it is nil --> | |
<% (@item.item_images || Hash.new).each do |key, image| %> | |
<img src="<%= image.path %>" width="397" <% if key != 0 %>style="display:none"<% end %> /> | |
<% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment