Created
August 6, 2014 12:29
-
-
Save ayrton/bd80e37bbaf950f080cd to your computer and use it in GitHub Desktop.
This file contains 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
# Single object | |
<%= render partial: 'thumbnail', object: video, as: :video %> | |
<%= render partial: 'thumbnail', locals: { video: video } %> | |
<%= render 'thumbnail', video: video %> | |
# Collection | |
<%= render partial: 'thumbnail', collection: videos, as: :video %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment