Last active
December 15, 2015 23:19
-
-
Save MikeSilvis/5339444 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
<div class="products cities-content"> | |
<ul class="unstyled cities-items" style="color:white;"> | |
<% sort_by_sold_out_or_ended(all_products_and_categories.sort_by(&:weighted_position)).each_with_index do|product_or_category, index| %> | |
<%= render product_or_category %> | |
<% end %> | |
</ul> | |
</div> |
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
def all_products_and_categories | |
categories.each_with_index do |category, index| | |
product.insert((index*4), category) | |
end.compact | |
return product | |
end |
Author
MikeSilvis
commented
Apr 8, 2013
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment