diff --git a/README.md b/README.md index cffdcade..868f221c 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This repository contains sample integrations for PayPal's v6 Web SDK. Learn how - make one-time payments with different payment methods like PayPal and Venmo - save payment methods for future transactions -- add Pay Later messaging (coming soon) +- add Pay Later messaging ## Before You Code diff --git a/client/components/paypalPayments/oneTimePayment/html/README.md b/client/components/paypalPayments/oneTimePayment/html/README.md index 6ac21ba1..185c0cab 100644 --- a/client/components/paypalPayments/oneTimePayment/html/README.md +++ b/client/components/paypalPayments/oneTimePayment/html/README.md @@ -14,8 +14,9 @@ npm start ### Sample Integrations -| Sample Integration | Description | -| ----------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [Recommended](src/recommended/index.html) | Start with this recommended sample integration. It displays all buttons supported by the v6 SDK and includes eligibility logic. It uses the "auto" presentation mode which attempts to launch a popup window and then automatically falls back to the modal presentation mode when the browser does not support popups. | -| [Custom Payment Handler](src/advanced/paymentHandler/index.html) | This custom integration uses the experimental "payment-handler" presentation mode. It teaches how to control the fallback logic for presentation modes based on what the browser supports. | -| [Custom Sandboxed Iframe](src/advanced/sandboxedIframe/README.md) | This custom integration demonstrates how a merchant can wrap the v6 SDK integration code into their own iframe and what values need to be passed to the [iframe sandbox attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe#sandbox). It does require two web servers to demonstrate the use case. Refer to the README in the src/advanced/sandboxedIframe directory to learn more. | +| Sample Integration | Description | +| ----------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [Recommended](src/recommended/index.html) | Start with this recommended sample integration. It displays all buttons supported by the v6 SDK and includes eligibility logic. It uses the "auto" presentation mode which attempts to launch a popup window and then automatically falls back to the modal presentation mode when the browser does not support popups. | +| [Payment Handler](src/advanced/paymentHandler/index.html) | This advanced integration uses the experimental "payment-handler" presentation mode. It teaches how to control the fallback logic for presentation modes based on what the browser supports. | +| [Redirect](src/advanced/redirect/index.html) | This advanced integration uses the "redirect" presentation mode. It teaches how to do a full-page redirect integration with the PayPal button on button click. | +| [Custom Sandboxed Iframe](src/advanced/sandboxedIframe/README.md) | This advanced integration demonstrates how a merchant can wrap the v6 SDK integration code into their own iframe and what values need to be passed to the [iframe sandbox attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe#sandbox). It does require two web servers to demonstrate the use case. Refer to the README in the src/advanced/sandboxedIframe directory to learn more. |