Digitale cadeaubon
Item number 3442
EUR 100.00
*
Content
1 piece
Unit price
EUR 100.00 / piece
In stock. Order by 11 am, dispatch the same day.
requestAnimationFrame(function () {
requestAnimationFrame(function () {
// Check once, after the initial load of the page if the default variation is unavailable
setTimeout(() => {
if (vueApp.$store.getters.currentItemVariation.variation.availability.id == 5) {
document.querySelector(".add-to-basket-container").classList.add("d-none");
}
}, 600);
// Check every time when the variation is changed if the new variation is available
vueApp.$store.subscribe(function (mutation, state) {
if (mutation.type.includes("setVariation")) {
if (vueApp.$store.getters.currentItemVariation.variation.availability.id == 5) {
document.querySelector(".add-to-basket-container").classList.add("d-none");
} else {
document.querySelector(".add-to-basket-container").classList.remove("d-none");
}
}
});
});
});
* Incl. VAT excl. Shipping