Created
November 4, 2011 17:15
-
-
Save HeroicEric/1339886 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
| # renders nothing | |
| <div data-hook="product_show"> | |
| <<h1>Hello World</h1> | |
| </div> | |
| # renders correctly | |
| <div data-hook="product_show"> | |
| <% @body_id = 'product-details' %> | |
| <h1>Hello World</h1> | |
| </div> | |
| # renders nothing | |
| <h1>Hello World</h1> | |
| # renders correctly | |
| <h1>Hello World</h1> | |
| <%= render 'taxons' %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment