From b63a671c2c25d85911b35f7862ea9a7473eb2cc1 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Wed, 20 Feb 2013 10:46:24 +0000 Subject: [PATCH] fix fullscreen --- static/js/pandora/embedPanel.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/static/js/pandora/embedPanel.js b/static/js/pandora/embedPanel.js index e5b636cf..1d35a03c 100644 --- a/static/js/pandora/embedPanel.js +++ b/static/js/pandora/embedPanel.js @@ -119,6 +119,9 @@ pandora.ui.embedPanel = function() { $timeline.options({ subtitles: data.subtitles ? video.subtitles : [] }); + }, + fullscreen: function(data) { + Ox.Fullscreen.toggle(); } }); @@ -301,4 +304,4 @@ pandora.ui.embedPanel = function() { return that; -}; \ No newline at end of file +};