forked from paypal/paypal-messaging-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstandalone-modal.html
32 lines (32 loc) · 1.18 KB
/
standalone-modal.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<title>Standalone Modal Sandbox</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<!-- <script src="//localhost.paypal.com:8080/modal.js"></script> -->
<script>
window.__TEST_ENV__ = 'https://msmaster.qa.paypal.com';
</script>
<script
src="https://cdn-5_1_rebrand_us_01.static.engineering.dev.paypalinc.com/upstream/bizcomponents/stage/modal.js"
data-pp-account="9DZUAPZS6JM5E"
></script>
</head>
<body>
<button class="learn-more">Learn more</button>
<script>
const modal = window.paypal.MessagesModal({
// account: 'DEV_US_LONG_TERM_DF',
amount: '600',
channel: 'DEBIT_FLIP',
customerId: 'W9WK2RH9RWWQC'
// offer: 'PAY_LATER_SHORT_TERM'
// features: 'new-checkout-design',
});
document.querySelector('.learn-more').addEventListener('click', () => {
modal.show();
});
</script>
</body>
</html>