Fix: typo in adsense-loader.js - roidsenseDelayed → roiAdsenseDelayed

The loader was checking for window.roidsenseDelayed but PHP sets
window.roiAdsenseDelayed, causing the loader to never initialize
and AdSense scripts to remain dormant.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
FrankZamora
2025-11-27 09:55:47 -06:00
parent 1876231ac1
commit a46126e015

View File

@@ -187,7 +187,7 @@
*/
function init() {
// Verificar si el retardo de AdSense está habilitado
if (!window.roidsenseDelayed) {
if (!window.roiAdsenseDelayed) {
debugLog('Retardo de AdSense no habilitado');
return;
}