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

Commit b1ab163

Browse files
committed
Merge pull request #34 from Shopify/cart-qty-fix
Cart qty fix
2 parents 1f8d7ab + 2473a8e commit b1ab163

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

snippets/ajax-cart-template.liquid

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
{% endcomment %}
88
<script id="cartTemplate" type="text/template">
99
{% raw %}
10-
<form action="/cart" method="post">
10+
<form action="/cart" method="post" novalidate>
1111
<button class="ajaxifyCart--close" title="Close Cart">Close Cart</button>
1212
<div class="ajaxifyCart--products">
1313
{{#items}}

templates/cart.liquid

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
</header>
1515

1616
{% if cart.item_count > 0 %}
17-
<form action="/cart" method="post">
17+
<form action="/cart" method="post" novalidate>
1818

1919
<div class="cart-row medium-down--hide">
2020
<div class="grid">

0 commit comments

Comments
 (0)