mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
31 lines
1.0 KiB
JavaScript
Vendored
31 lines
1.0 KiB
JavaScript
Vendored
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
window.CKOConfig = {
|
|
publicKey: document.querySelector('meta[name="public-key"]').content,
|
|
customerEmail: document.querySelector('meta[name="customer-email"]')
|
|
.content,
|
|
value: document.querySelector('meta[name="value"]').content,
|
|
currency: document.querySelector('meta[name="currency"]').content,
|
|
paymentMode: 'cards',
|
|
cardFormMode: 'cardTokenisation',
|
|
cardTokenised: function(event) {
|
|
document.querySelector(
|
|
'input[name="gateway_response"]'
|
|
).value = JSON.stringify(event.data);
|
|
|
|
document.querySelector(
|
|
'input[name="store_card"]'
|
|
).value = document.getElementById('store-card-checkbox').checked ? 1 : 0;
|
|
|
|
document.getElementById('server-response').submit();
|
|
},
|
|
};
|