Keks notice!

This commit is contained in:
2025-09-05 07:42:07 +02:00
parent b0b5149069
commit 4d00be8127
24 changed files with 1810 additions and 7 deletions

View File

@@ -6,6 +6,16 @@ let currentData = [];
document.addEventListener('DOMContentLoaded', function() {
checkAuth();
loadStatistics();
// Add cookie settings button functionality
const cookieSettingsBtn = document.getElementById('cookie-settings-footer');
if (cookieSettingsBtn) {
cookieSettingsBtn.addEventListener('click', function() {
if (window.cookieConsent) {
window.cookieConsent.resetConsent();
}
});
}
loadPageStatistics();
setupEventListeners();
});