Entrevista com DR. Hildon Chaves / TV TUDOAQUI!


Noticias da Semana

Veja +

const checkAdsRendered = setInterval(() => { checkCount++; const currentAdBlocks = adContainer.querySelectorAll('.adsbygoogle'); let anyFilled = false; let allChecked = true; currentAdBlocks.forEach(ad => { const status = ad.getAttribute('data-ad-status'); if (status === 'filled') { anyFilled = true; } else if (status === 'unfilled') { ad.remove(); // Remove blocos sem preenchimento } else if (!status) { allChecked = false; // Tenta renderizar uma vez se ainda não foi tentado if (!ad.dataset.adTried) { try { (adsbygoogle = window.adsbygoogle || []).push({}); ad.dataset.adTried = 'true'; } catch (e) { console.warn('Erro ao tentar renderizar anúncio novamente', e); } } } }); if (anyFilled) { clearInterval(checkAdsRendered); wrapper.style.pointerEvents = 'auto'; setTimeout(() => { closeWrapper.style.display = 'flex'; }, 4000); } else if (allChecked || checkCount >= maxChecks) { clearInterval(checkAdsRendered); if (!anyFilled) { wrapper.remove(); } } }, 500);