mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 15:17:25 +01:00
* Some random quick (#9111) * Switch group button directions * Allowed admins to export challenges * Added scoping to some stable styles * Fixed challenge cloning * Tasks tags (#9112) * Added auto apply and exit * Add challenge tag editing * Fixed lint * Skill fixes (#9113) * Added local storage setting for spell drawer * Added new spell styles * Fixed typo * Reset local creds if access is denied (#9114) * various fixes: group leader's name at top of edit drop-down; Members List; etc (#9117) * fix text describing location of subscription/gem gift box * disable Copy As To-Do in Tavern, guilds, party because it's not working * change members label on group pages to Member List * remove outdated info about seeing number of Gems available to buy * allow Danger Zone to be seen by players without local authentication Also add an hr because the Danger Zone heading was crammed up against the button above it. * put current group leader's name at top of Leader change drop-down * Client Fixes (#9120) * unduplicate logout code * re-enable debug menu * fix pets badge and equipping mounts * close gift modal after sending gems * armoire notifications * Oct 1 fixes (#9121) * Added default tags to task * Added seasonal gear check and show spooky * Disabled spooky sparkles * Fixed challenge remove tasks modal * Hid checklist * Added group gems modal * Purchase with amazon * Added check for user health * Added missing notification file
33 lines
1.2 KiB
JavaScript
33 lines
1.2 KiB
JavaScript
import getStore from 'client/store';
|
|
|
|
const AMAZON_PAYMENTS = process.env.AMAZON_PAYMENTS; // eslint-disable-line
|
|
const NODE_ENV = process.env.NODE_ENV; // eslint-disable-line
|
|
|
|
export function setup () {
|
|
const store = getStore();
|
|
|
|
// Set Amazon Payments as ready in the store,
|
|
// Added here to make sure the listener is registered before the script can be executed
|
|
window.onAmazonLoginReady = () => {
|
|
store.state.isAmazonReady = true;
|
|
window.amazon.Login.setClientId(AMAZON_PAYMENTS.CLIENT_ID);
|
|
};
|
|
|
|
// Load the scripts
|
|
|
|
// Amazon Payments
|
|
const amazonScript = document.createElement('script');
|
|
let firstScript = document.getElementsByTagName('script')[0];
|
|
amazonScript.type = 'text/javascript';
|
|
amazonScript.async = true;
|
|
amazonScript.src = `https://static-na.payments-amazon.com/OffAmazonPayments/us/${(NODE_ENV === 'production' ? '' : 'sandbox/')}js/Widgets.js`;
|
|
firstScript.parentNode.insertBefore(amazonScript, firstScript);
|
|
|
|
// Stripe
|
|
const stripeScript = document.createElement('script');
|
|
firstScript = document.getElementsByTagName('script')[0];
|
|
stripeScript.async = true;
|
|
stripeScript.src = '//checkout.stripe.com/v2/checkout.js';
|
|
firstScript.parentNode.insertBefore(stripeScript, firstScript);
|
|
}
|