Merge branch 'main' into dev

Merge branch 'main' into dev
This commit is contained in:
archos
2025-02-09 10:09:50 +01:00
7 changed files with 243 additions and 69 deletions

View File

@ -57,3 +57,9 @@ document.addEventListener('DOMContentLoaded', function() {
loadFinanceData('finance_2024_corrected.csv'); // Stejná složka pro archivovaný soubor
});
});
$(document).ready(function() {
$('#dropdownMenuButton').on('click', function() {
$('.dropdown-menu').toggle(); // Ruční zobrazení dropdown menu
});
});