diff --git a/src/app/modules/mensaje-final/mensaje-final.component.ts b/src/app/modules/mensaje-final/mensaje-final.component.ts index e5a46c3..fe0ce1b 100644 --- a/src/app/modules/mensaje-final/mensaje-final.component.ts +++ b/src/app/modules/mensaje-final/mensaje-final.component.ts @@ -19,6 +19,9 @@ export class MensajeFinalComponent implements OnInit { this.timer = setTimeout(() => { this.goToSplash(); }, 10000); + $(document).ready(function() { + $('body').removeClass('media-pantalla'); + }); } ngOnDestroy() { diff --git a/src/app/modules/splash-screen/splash-screen.component.ts b/src/app/modules/splash-screen/splash-screen.component.ts index cddcacf..29e71b3 100644 --- a/src/app/modules/splash-screen/splash-screen.component.ts +++ b/src/app/modules/splash-screen/splash-screen.component.ts @@ -19,7 +19,6 @@ export class SplashScreenComponent implements OnInit { setTimeout(() => { this.showSplashScreen = false; }, this.timerSplashScreen); - $(document).ready(function() { $('body').removeClass('media-pantalla'); });