From c8ff77211d87af688eec9f0bf36f316ef967ea3b Mon Sep 17 00:00:00 2001 From: dan Date: Sun, 22 Mar 2020 12:41:26 -0600 Subject: [PATCH] Change video source --- .../src/app/components/live-stream/live-stream.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Client/src/app/components/live-stream/live-stream.component.ts b/Client/src/app/components/live-stream/live-stream.component.ts index bebc2e1..becde23 100644 --- a/Client/src/app/components/live-stream/live-stream.component.ts +++ b/Client/src/app/components/live-stream/live-stream.component.ts @@ -14,7 +14,7 @@ export class LiveStreamComponent implements OnInit { public sermonVideo: string = 'https://ofbbutte.com/static/media/video/sermon.mp4'; public pleaseWait: string = 'https://ofbbutte.com/static/media/video/PleaseWait.jpg'; public clickToPlay: string = 'https://ofbbutte.com/static/media/video/ClickToPlay.jpg'; - public message: string = "Please Wait"; + public message: string = "Please Wait..."; public isReady: boolean = false; @@ -35,7 +35,7 @@ export class LiveStreamComponent implements OnInit { if (this.isReady === true) { this.showVideo = true; this.videoSrc = ''; - this.videoSrc = this.videoSrc; + this.videoSrc = this.sermonVideo; clearInterval(this.interval); } });