request fullscreen on documentElement instead of body (#1621 #1624)

master
Hakim El Hattab 2016-06-21 11:30:12 +02:00
parent ce777e4c4b
commit a12a17b2d7
3 changed files with 2 additions and 17 deletions

View File

@ -47,12 +47,6 @@ body {
background-color: #fff;
color: #000; }
html:-webkit-full-screen-ancestor {
background-color: inherit; }
html:-moz-full-screen-ancestor {
background-color: inherit; }
/*********************************************
* VIEW FRAGMENTS
*********************************************/

View File

@ -57,15 +57,6 @@ body {
color: #000;
}
// Ensures that the main background color matches the
// theme in fullscreen mode
html:-webkit-full-screen-ancestor {
background-color: inherit;
}
html:-moz-full-screen-ancestor {
background-color: inherit;
}
/*********************************************
* VIEW FRAGMENTS

View File

@ -1980,10 +1980,10 @@
*/
function enterFullscreen() {
var element = document.body;
var element = document.documentElement;
// Check which implementation is available
var requestMethod = element.requestFullScreen ||
var requestMethod = element.requestFullscreen ||
element.webkitRequestFullscreen ||
element.webkitRequestFullScreen ||
element.mozRequestFullScreen ||