From 5075e3de7ee4b13603afaeae3f62912d5bd4fd2e Mon Sep 17 00:00:00 2001 From: rlx <0x0073@0x2620.org> Date: Thu, 1 Nov 2012 12:36:00 +0000 Subject: [PATCH] VideoPanel: Pass down correct value on fullscreen option update --- source/Ox.UI/js/Video/VideoPanel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Ox.UI/js/Video/VideoPanel.js b/source/Ox.UI/js/Video/VideoPanel.js index 823a4e40..743bce04 100644 --- a/source/Ox.UI/js/Video/VideoPanel.js +++ b/source/Ox.UI/js/Video/VideoPanel.js @@ -83,7 +83,7 @@ Ox.VideoPanel = function(options, self) { .options(options || {}) .update({ fullscreen: function() { - self.$video.options({fullscreen: self.options.value}); + self.$video.options({fullscreen: self.options.fullscreen}); }, height: function() { self.$video.options({height: getPlayerHeight()});