Catalog
-
Vistillion Built To Dream Higher, Eiffel Tower - Acrylic PosterRegular price €126,64
€148,99Sale price -
-
-
-
) =============================== */ document.addEventListener("DOMContentLoaded", () => { const sliders = document.querySelectorAll('.services-slider[id^="service-list-"]'); if (!sliders.length) return; const MAP = [ { key: "made in france", url: "/pages/about-vistillion" }, { key: "museum quality", url: "/pages/quality-warranty" }, { key: "fixation kit included", url: "/pages/care-instructions" }, { key: "secured delivery", url: "/policies/shipping-policy" }, ]; const normalize = (s) => (s || "") .toLowerCase() .replace(/\s+/g, " ") .replace(/[’']/g, "'") .trim(); const findUrlFromTitle = (title) => { const t = normalize(title); const hit = MAP.find(m => t.includes(m.key)); return hit ? hit.url : null; }; sliders.forEach((slider) => { // On prend comme "card" les enfants directs les plus probables const cards = slider.querySelectorAll(":scope > div, :scope > li"); cards.forEach((card) => { const titleEl = card.querySelector("h1,h2,h3,h4,h5,.h1,.h2,.h3,.h4,.h5"); const title = titleEl ? titleEl.textContent : ""; const url = findUrlFromTitle(title); if (!url) return; card.style.cursor = "pointer"; card.setAttribute("role", "link"); card.setAttribute("tabindex", "0"); // Evite double binding if (card.dataset.vistillionBound) return; card.dataset.vistillionBound = "1"; const go = (evt) => { // si click direct sur un , on laisse le lien faire if (evt && evt.target && evt.target.closest && evt.target.closest("a")) return; window.location.href = url; }; card.addEventListener("click", go); card.addEventListener("keydown", (e) => { if (e.key === "Enter" || e.key === " ") { e.preventDefault(); go(e); } }); }); }); });