Skip to content
This repository has been archived by the owner on Aug 30, 2018. It is now read-only.

Commit

Permalink
Merge pull request #34 from Shopify/cart-qty-fix
Browse files Browse the repository at this point in the history
Cart qty fix
  • Loading branch information
cshold committed Apr 4, 2014
2 parents 1f8d7ab + 2473a8e commit b1ab163
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion snippets/ajax-cart-template.liquid
Expand Up @@ -7,7 +7,7 @@
{% endcomment %}
<script id="cartTemplate" type="text/template">
{% raw %}
<form action="/cart" method="post">
<form action="/cart" method="post" novalidate>
<button class="ajaxifyCart--close" title="Close Cart">Close Cart</button>
<div class="ajaxifyCart--products">
{{#items}}
Expand Down
2 changes: 1 addition & 1 deletion templates/cart.liquid
Expand Up @@ -14,7 +14,7 @@
</header>

{% if cart.item_count > 0 %}
<form action="/cart" method="post">
<form action="/cart" method="post" novalidate>

<div class="cart-row medium-down--hide">
<div class="grid">
Expand Down

0 comments on commit b1ab163

Please sign in to comment.