Skip to content
Snippets Groups Projects
Commit b7f480c9 authored by Hakim El Hattab's avatar Hakim El Hattab
Browse files

fix fullscreen for embedded decks

parent c4870362
No related branches found
No related tags found
No related merge requests found
/* http://meyerweb.com/eric/tools/css/reset/
v4.0 | 20180602
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
display: block;
}
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
......@@ -333,7 +333,7 @@ export default class Keyboard {
}
// F
else if( keyCode === 70 ) {
enterFullscreen();
enterFullscreen( config.embedded ? this.Reveal.getViewportElement() : document.documentElement );
}
// A
else if( keyCode === 65 ) {
......
......@@ -115,9 +115,9 @@ export const closestParent = ( target, selector ) => {
* @see http://fullscreen.spec.whatwg.org/
* @see https://developer.mozilla.org/en-US/docs/DOM/Using_fullscreen_mode
*/
export const enterFullscreen = () => {
export const enterFullscreen = element => {
let element = document.documentElement;
element = element || document.documentElement;
// Check which implementation is available
let requestMethod = element.requestFullscreen ||
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment