Skip to content

Instantly share code, notes, and snippets.

@HeroicEric
Created November 4, 2011 17:16
Show Gist options
  • Select an option

  • Save HeroicEric/1339891 to your computer and use it in GitHub Desktop.

Select an option

Save HeroicEric/1339891 to your computer and use it in GitHub Desktop.
# 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