Le Correspondant

function VPexistAds(){ const btn = document.getElementById("viewpay-btn"); if(btn){ btn.style.display = "inline-block"; btn.style.padding = "12px 18px"; btn.style.background = "#1bbbec"; btn.style.color = "#fff"; btn.style.border = "none"; btn.style.borderRadius = "6px"; btn.style.cursor = "pointer"; btn.innerHTML = "▶ Regarder une publicité pour débloquer le contenu"; btn.onclick = function(){ VPloadAds(); }; } } function VPnoAds(){ const btn = document.getElementById("viewpay-btn"); if(btn){ btn.style.display = "inline-block"; btn.innerHTML = "Aucune publicité disponible pour le moment"; btn.style.background = "#ccc"; btn.style.cursor = "not-allowed"; } }