календарь для документов

This commit is contained in:
2026-02-23 23:40:10 +05:00
parent 384469aa2c
commit d62abb6cef
3 changed files with 678 additions and 18 deletions

View File

@@ -89,7 +89,7 @@ function showMainInterface() {
// Функция для перезагрузки всех скриптов
function reloadAllScripts() {
console.log('🔄 Перезагрузка всех скриптов после авторизации...');
//console.log('🔄 Перезагрузка всех скриптов после авторизации...');
// Список скриптов для перезагрузки (в правильном порядке)
const scriptsToReload = [
@@ -134,7 +134,7 @@ function loadScriptsSequentially(scripts, index) {
const script = document.createElement('script');
script.src = scripts[index];
script.onload = () => {
console.log(`✅ Загружен: ${scripts[index]}`);
// console.log(`✅ Загружен: ${scripts[index]}`);
loadScriptsSequentially(scripts, index + 1);
};
script.onerror = (error) => {