Calendario Interactivo Chile
Calendario Chile 📅
Tema
Exportar:
Hoy
Feriado
Nota guardada
Fin de semana
Dom
Lun
Mar
Mié
Jue
Vie
Sáb
`;const blob = new Blob(['\ufeff' + html], { type: 'application/msword;charset=utf-8' }); const url = URL.createObjectURL(blob); const a = document.createElement('a'); a.href = url; a.download = filename; document.body.appendChild(a); a.click(); document.body.removeChild(a); URL.revokeObjectURL(url); showToast('✅ Word (.doc) descargado'); } catch(e) { console.error(e); showToast('❌ Error al generar Word'); } }, 50); }// ===================== PRINT ===================== function printCalendar() { window.print(); }// ===================== INIT ===================== function init() { setTheme(currentTheme); setView('month'); } init();// Keyboard escape document.addEventListener('keydown', e => { if (e.key === 'Escape') closeModal(); });
Desplazamiento al inicio