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