Guest User

Untitled

a guest
Jul 18th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. <div class="block items-in-cart" data-bind="mageInit: {'collapsible':{'openedState': 'active', 'active': isItemsBlockExpanded()}}">
  2. <div class="title" data-role="title">
  3. <strong role="heading">
  4. <translate args="maxCartItemsToDisplay" if="maxCartItemsToDisplay < getCartLineItemsCount()" />
  5. <translate args="'of'" if="maxCartItemsToDisplay < getCartLineItemsCount()" />
  6. <span data-bind="text: getCartLineItemsCount()"></span>
  7. <translate args="'Item in Cart'" if="getCartLineItemsCount() === 1" />
  8. <translate args="'Items in Cart'" if="getCartLineItemsCount() > 1" />
  9. </strong>
  10. </div>
  11. <div class="content minicart-items" data-role="content">
  12. <div class="minicart-items-wrapper overflowed">
  13. <ol class="minicart-items" data-bind="afterRender: mitchTest">
  14. <each args="items()">
  15. <li class="product-item">
  16. <div class="product">
  17. <each args="$parent.elems()" render="" />
  18. </div>
  19. </li>
  20. </each>
  21. </ol>
  22. </div>
  23. </div>
  24. <div class="actions-toolbar" if="maxCartItemsToDisplay < getCartLineItemsCount()">
  25. <div class="secondary">
  26. <a class="action viewcart" data-bind="attr: {href: cartUrl}">
  27. <span data-bind="i18n: 'View and Edit Cart'"></span>
  28. </a>
  29. </div>
  30. </div>
  31. </div>
Add Comment
Please, Sign In to add comment