From 8e623d957540b95d73ec7eaf91e166664881d2fb Mon Sep 17 00:00:00 2001 From: Dan Ziv Date: Thu, 9 Nov 2017 18:04:02 +0200 Subject: [PATCH] fix(FEC-7436): preload auto: first live frame appears with entry thumbnail (#160) add black background to the poster styles --- src/utils/poster-manager.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/poster-manager.js b/src/utils/poster-manager.js index 9d658779f..31afce5df 100644 --- a/src/utils/poster-manager.js +++ b/src/utils/poster-manager.js @@ -28,6 +28,7 @@ class PosterManager { setSrc(posterUrl: ?string): void { if (posterUrl) { this._posterUrl = posterUrl; + Utils.Dom.setStyle(this._el, "background-color", "black"); Utils.Dom.setStyle(this._el, "background-image", `url("${this._posterUrl}")`); } }