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

Esse commit está contido em:
Hakim El Hattab 2016-06-21 11:30:12 +02:00
commit bac187f3a0
3 arquivos alterados com 2 adições e 17 exclusões

Ver arquivo

@ -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
*********************************************/

Ver arquivo

@ -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

Ver arquivo

@ -1995,10 +1995,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 ||