You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
525 B

  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /** @var \Magento\InstantPurchase\Block\Button $block */
  7. ?>
  8. <?php if ($block->isEnabled()) : ?>
  9. <div id="instant-purchase" data-bind="scope:'instant-purchase'">
  10. <!-- ko template: getTemplate() --><!-- /ko -->
  11. </div>
  12. <script type="text/x-magento-init">
  13. {
  14. "#instant-purchase": {
  15. "Magento_Ui/js/core/app": <?= /* @noEscape */ $block->getJsLayout();?>
  16. }
  17. }
  18. </script>
  19. <?php endif; ?>