Auto-create control panel on page load

 Fixed:
- Control panel now created automatically when page loads
- No need to wait for messages
- Creates alongside checkboxes and Select All button
- Will appear in top-right corner 1 second after page load

The control panel should now be visible immediately!
This commit is contained in:
renato97
2025-11-04 05:18:00 +00:00
parent 3d7b1e74d6
commit 54563424b4

View File

@@ -587,14 +587,8 @@
setTimeout(() => {
addCheckboxes();
addSelectAllButton();
createFloatingProgressPopup(); // Crear control panel automáticamente
}, 1000);
// TEST: Crear popup de prueba para verificar que funciona
console.log('🧪 Creando popup de prueba...');
setTimeout(() => {
updateProgress(1, 5, 'Prueba', 'Verificando si el popup funciona');
console.log('✅ Popup de prueba enviado');
}, 2000);
}
if (document.readyState === 'loading') {