Skip to content
This repository has been archived by the owner on Oct 3, 2020. It is now read-only.

Commit

Permalink
fix(coupons): only allow 1 coupon for now
Browse files Browse the repository at this point in the history
  • Loading branch information
nickjanssen committed Oct 20, 2014
1 parent 2a0cddd commit 672edd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/cart/cc-cart.tpl.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
</ul>
</div>

<div class="cc-cart-promotioncode-box" ng-show="!isEmpty && enablePromotionCodes">
<div class="cc-cart-promotioncode-box" ng-show="!isEmpty && enablePromotionCodes && !coupons.length">
<a class="cc-cart-coupon-button" ng-hide="promotionCodeModel.showForm" ng-click="promotionCodeModel.showForm=!promotionCodeModel.showForm">{{ln.promotionCodeHint}}</a>
<form name="billingAddressForm" novalidate class="cc-text-box-on-background" ng-show="promotionCodeModel.showForm">
<p class="cc-form-label">{{ln.promotionCode}}</p>
Expand Down

0 comments on commit 672edd2

Please sign in to comment.