diff --git a/content/contents/leistungen.blade.php b/content/contents/leistungen.blade.php
index 3f7da82..6496bd2 100644
--- a/content/contents/leistungen.blade.php
+++ b/content/contents/leistungen.blade.php
@@ -159,9 +159,9 @@
-
@@ -233,7 +233,7 @@
// Remove the element to remove
elementToRemove.classList.remove('show');
setTimeout(() => {
- if(!elementToRemove.classList.includes('show')) elementToRemove.style.display = 'none';
+ if(!elementToRemove.classList.contains('show')) elementToRemove.style.display = 'none';
}, 800);
} else {
const fixedElementRect = elementToRemove.getBoundingClientRect();
@@ -247,7 +247,7 @@
// Hide the element to remove
elementToRemove.classList.remove('show');
setTimeout(() => {
- if(!elementToRemove.classList.includes('show')) elementToRemove.style.display = 'none';
+ if(!elementToRemove.classList.contains('show')) elementToRemove.style.display = 'none';
}, 800);
}
}
diff --git a/content/includes/cookie-banner.blade.php b/content/includes/cookie-banner.blade.php
index 78a1c0f..8d0a549 100644
--- a/content/includes/cookie-banner.blade.php
+++ b/content/includes/cookie-banner.blade.php
@@ -14,7 +14,7 @@
}
-