From d1c477a76f57e69f141c6c1124d01e281d490b36 Mon Sep 17 00:00:00 2001 From: Tim Hobbs Date: Mon, 24 Mar 2014 20:26:54 -0700 Subject: [PATCH] Fullscreen fix So weird, because I was changing this to try and get rid of the vertical scrollbar, but... Whatever. --- dashboard-ui/scripts/mediaplayer-video.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard-ui/scripts/mediaplayer-video.js b/dashboard-ui/scripts/mediaplayer-video.js index c9a36eb536..04b91dc857 100644 --- a/dashboard-ui/scripts/mediaplayer-video.js +++ b/dashboard-ui/scripts/mediaplayer-video.js @@ -59,7 +59,7 @@ } $('#videoPlayer').removeClass('fullscreenVideo'); } else { - requestFullScreen(document.documentElement); + requestFullScreen(document.body); } };