From 7940344f826654058a1741dc89182e8f1e61c788 Mon Sep 17 00:00:00 2001 From: TheOnlyMace <0815cracky@gmail.com> Date: Tue, 13 Jan 2026 23:31:12 +0100 Subject: [PATCH] Show cookie consent banner by removing 'hide' class: Updated the showBanner function to ensure the cookie consent banner is displayed correctly by removing the 'hide' class, improving visibility for users. --- public/assets/js/cookie-consent.js | 1 + 1 file changed, 1 insertion(+) diff --git a/public/assets/js/cookie-consent.js b/public/assets/js/cookie-consent.js index a55385d..ce44911 100644 --- a/public/assets/js/cookie-consent.js +++ b/public/assets/js/cookie-consent.js @@ -245,6 +245,7 @@ */ showBanner: function() { if (banner) { + banner.classList.remove('hide'); banner.classList.add('show'); banner.setAttribute('aria-hidden', 'false'); // Fokus auf ersten Button setzen für Accessibility