Skip to content

Instantly share code, notes, and snippets.

@shanwixcode
Last active June 28, 2020 05:34
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Stripe Tutorial - Dude Lemon
export function selectPlan_click(event) {
let $item = $w.at(event.context);
$w('#selectPlan').hide(); //hide button
$item("#openingLb").show(); //show a loader animation on this item
let planData = $item("#plans").getCurrentItem(); //get the click item's data from its dataset
let deployData = {
name: planData.displayName,
price: planData.displayPrice,
planId: planData.planId,
currency: planData.currency
};
wixWindow.openLightbox('subscribe', deployData) //lightbox name
.then( () => {
$item("#openingLb").hide();
$w("#selectPlan").show();
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment