Skip to content

Instantly share code, notes, and snippets.

@mb-dev
Created February 5, 2013 05:44
Show Gist options
  • Select an option

  • Save mb-dev/4712492 to your computer and use it in GitHub Desktop.

Select an option

Save mb-dev/4712492 to your computer and use it in GitHub Desktop.
Master Detail Page - View
<div class="container">
<div class="header">
Header - <a href="/products/">Product List</a>
</div>
<div id="product_details" style="display: none">
<% if @product.present? %>
<%= render file: 'products/product' %>
<% end %>
</div>
<ul class="products" id="product_list" style="display: none">
<% @products.each do |product| %>
<li>
<a href="/products/<%=product.id%>">
<img src="<%= product.image_url%>"/>
<div>
<%= product.name %>
</div>
</a>
</li>
<% end %>
</ul>
</div>
<script type="text/javascript">
$(document).ready(function() {
window.app = new ProductRouter();
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment