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.
 
 
 
 
 
 

35 lines
1.1 KiB

  1. <!--
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. -->
  7. <if args="showButton()">
  8. <button type="button"
  9. class="action primary instant-purchase"
  10. click="instantPurchase"
  11. attr="title: $t(buttonText)">
  12. <span translate="buttonText"></span>
  13. </button>
  14. <input if="paymentToken()"
  15. type="hidden"
  16. name="instant_purchase_payment_token"
  17. ko-value="paymentToken().publicHash" />
  18. <input if="shippingAddress()"
  19. type="hidden"
  20. name="instant_purchase_shipping_address"
  21. ko-value="shippingAddress().id" />
  22. <input if="billingAddress()"
  23. type="hidden"
  24. name="instant_purchase_billing_address"
  25. ko-value="billingAddress().id" />
  26. <if args="shippingMethod()">
  27. <input type="hidden"
  28. name="instant_purchase_carrier"
  29. ko-value="shippingMethod().carrier" />
  30. <input type="hidden"
  31. name="instant_purchase_shipping"
  32. ko-value="shippingMethod().method" />
  33. </if>
  34. </if>