diff --git a/source/Ox.UI/js/Video/VideoPlayer.js b/source/Ox.UI/js/Video/VideoPlayer.js index 27e83fe5..71b19991 100644 --- a/source/Ox.UI/js/Video/VideoPlayer.js +++ b/source/Ox.UI/js/Video/VideoPlayer.js @@ -467,15 +467,19 @@ Ox.VideoPlayer = function(options, self) { .attr({ src: self.options.poster }) + .hide() .one({ load: function() { - self.$poster.css(getVideoCSS( - self.$poster[0].width, - self.$poster[0].height - )).appendTo(self.$videoContainer); + self.$poster + .css(getVideoCSS( + self.$poster[0].width, + self.$poster[0].height + )) + .show(); self.posterIsVisible = true; } - }); + }) + .appendTo(self.$videoContainer); } /*