made installer and seperated stuff into diferent files

This commit is contained in:
2026-06-14 10:47:39 +02:00
parent 9045841645
commit 904607a045
22 changed files with 4766 additions and 3952 deletions

View File

@@ -0,0 +1,15 @@
function loadDashboard(pushHistory = true) {
showView('dashboardView');
if (!pushHistory) return;
const url = new URL(window.location.href);
url.searchParams.set('page', 'home');
url.searchParams.delete('task');
url.searchParams.delete('project');
url.searchParams.delete('tasks');
url.searchParams.delete('version');
url.searchParams.delete('profile');
url.searchParams.delete('admin');
window.history.pushState({}, '', url);
}