diff --git a/source/Ox.UI/js/Video/VideoPlayer.js b/source/Ox.UI/js/Video/VideoPlayer.js index 9deca079..2b16664e 100644 --- a/source/Ox.UI/js/Video/VideoPlayer.js +++ b/source/Ox.UI/js/Video/VideoPlayer.js @@ -248,8 +248,8 @@ Ox.VideoPlayer = function(options, self) { Ox.Fullscreen.bind('change', function() { //FIXME: is change fired before window size is updated to fullscreen? - self.options.fullscreen && setTimeout(function() { - setSizes(true); + setTimeout(function() { + setSizes(self.options.fullscreen); }, 250); });