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