From 45bee5172226e8a6aa6514627e745d2a43ce302b Mon Sep 17 00:00:00 2001 From: Luis Suarez Date: Wed, 22 Jan 2020 14:58:11 -0400 Subject: [PATCH] corregir pantalla mensaje final --- src/app/modules/mensaje-final/mensaje-final.component.ts | 3 +++ src/app/modules/splash-screen/splash-screen.component.ts | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) 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'); }); -- 1.9.1