forked from paypal/paypal-checkout-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
globals.js
36 lines (32 loc) · 1.02 KB
/
globals.js
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
/* eslint import/no-commonjs: off, flowtype/require-valid-file-annotation: off, flowtype/require-return-type: off */
const postRobotGlobals = require("@krakenjs/post-robot/globals");
const zoidGlobals = require("@krakenjs/zoid/globals");
module.exports = {
__ZOID__: {
...zoidGlobals.__ZOID__,
__DEFAULT_CONTAINER__: true,
__DEFAULT_PRERENDER__: true,
__FRAMEWORK_SUPPORT__: true,
__SCRIPT_NAMESPACE__: true,
},
__POST_ROBOT__: {
...postRobotGlobals.__POST_ROBOT__,
__IE_POPUP_SUPPORT__: false,
__SCRIPT_NAMESPACE__: true,
},
__PAYPAL_CHECKOUT__: {
__REMEMBERED_FUNDING__: [],
__URI__: {
__CHECKOUT__: "/checkoutnow",
__BUTTONS__: "/smart/buttons",
__MENU__: "/smart/menu",
__QRCODE__: "/smart/qrcode",
__INSTALLMENTS__: "/smart/installments",
__MODAL__: "/smart/modal",
__CARD_FIELDS__: "/smart/card-fields",
__CARD_FIELD__: "/smart/card-field",
__WALLET__: "/smart/wallet",
__PAYMENT_FIELDS__: "/altpayfields",
},
},
};