completed

This commit is contained in:
2026-03-04 14:37:11 +05:00
parent 0dd9ddfc96
commit 4456844e50
6 changed files with 35 additions and 25 deletions

View File

@@ -1,5 +1,4 @@
// main.js - Главный файл инициализации
//let currentTaskView = 'all'; // 'all', 'my_assigned', 'assigned_to_me'
window.currentTaskView = 'all'; // 'all', 'my_assigned', 'assigned_to_me'
let allTasksCache = []; // Кэш всех задач
@@ -515,4 +514,5 @@ function showSection(sectionName) {
function showKanbanSection() {
showSection('kanban');
}
window.setupEventListeners = setupEventListeners;