design/public/assets/js/expandProductCheckout.js
free ko 42d8eab1f0
All checks were successful
publish / Build-and-publish (push) Successful in 19s
new pages, and various edits
2024-11-16 15:46:05 +02:00

11 lines
437 B
JavaScript

document.querySelectorAll('.checkoutMainInsideSecBodyCard').forEach(card => {
const actionBtn = card.querySelector('.checkoutMainInsideSecBodyCardTopActionBtnView');
const bottom = card.querySelector('.checkoutMainInsideSecBodyCardBottom');
if (actionBtn && bottom) {
actionBtn.addEventListener('click', () => {
bottom.classList.toggle('checkoutMainInsideSecBodyCardBottomActive');
});
}
});