Твой Цифровой Сад
Твой Цифровой Сад
Ошибка загрузки.
"; } } async function openAbout() { document.getElementById('aboutScreen').classList.add('active'); const aboutContent = document.getElementById('aboutContent'); aboutContent.innerHTML = 'Загрузка...
'; try { const [visRes, roadRes] = await Promise.all([ fetch('/VISION_ru.md').catch(() => null), fetch('/ROADMAP_ru.md').catch(() => null) ]); let html = ''; if (visRes && visRes.ok) html += 'Документация не найдена.
'; } catch(e) { aboutContent.innerHTML = 'Ошибка загрузки.
'; } } // Закрытие по Escape document.addEventListener('keydown', (e) => { if (e.key === 'Escape' && academyScreen.classList.contains('active')) closeAcademy(); if (e.key === 'Escape' && document.getElementById('aboutScreen').classList.contains('active')) { document.getElementById('aboutScreen').classList.remove('active'); } }); initAuth();