fixed privacy policy splash

This commit is contained in:
Prospect
2024-03-12 10:59:38 -04:00
parent 14abe15f7b
commit 267b927711
3 changed files with 6 additions and 16 deletions

View File

@@ -496,9 +496,11 @@ class SplashScreen {
}
}
showSplashScreen() {
this.splashScreen.classList.remove('hidden');
this.headerNav.classList.add('out-of-view');
this.footerNav.classList.add('out-of-view');
if (window.location.href.indexOf('privacy-policy') === -1) {
this.splashScreen.classList.remove('hidden');
this.headerNav.classList.add('out-of-view');
this.footerNav.classList.add('out-of-view');
}
}
hideSplashScreen() {
this.splashScreen.classList.add('close');

File diff suppressed because one or more lines are too long