forked from paypal/paypal-messaging-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstandalone.html
39 lines (38 loc) · 1.17 KB
/
standalone.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
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<title>Messaging.js Dev Sandbox</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<script>
window.__TEST_ENV__ = 'https://www.msmaster.qa.paypal.com';
</script>
<script
src="https://cdn-op_only_json_00.static.engineering.dev.paypalinc.com/upstream/bizcomponents/stage/messaging.js"
data-pp-account="9DZUAPZS6JM5E"
></script>
</head>
<body>
<div
class="messages"
data-pp-message
data-pp-amount="1000"
data-pp-style-layout="text"
data-pp-style-layout="black"
data-pp-style-logo-type="primary"
data-pp-style-logo-position="left"
></div>
<script>
paypal
.Messages({
style: {
layout: 'text',
logo: {
type: 'none'
}
}
})
.render('.messages');
</script>
</body>
</html>