This commit is contained in:
Kiran Challa 2016-04-18 15:57:41 -07:00
parent 95eaa0a11c
commit ef5a5cdf5d
1 changed files with 7 additions and 7 deletions

View File

@ -1,11 +1,11 @@
@if (ViewBag.CartCount > 0)
{
<li>
@if (ViewBag.CartCount > 0)
{
<li>
<a asp-controller="ShoppingCart" asp-action="Index" title="@ViewBag.CartSummary">
<span class="glyphicon glyphicon-shopping-cart"></span>
<span class="glyphicon glyphicon glyphicon-shopping-cart"></span>
<span id="cart-status">
@ViewBag.CartCount
</span>
</a>
</li>
</span>
</a>
</li>
}