deck.js icon indicating copy to clipboard operation
deck.js copied to clipboard

Fullscreen remains black

Open Jigsaw5279 opened this issue 11 years ago • 1 comments

It seems like if the browser is put into fullscreen mode by requestFullScreen, nothing but the status is displayed.

Jigsaw5279 avatar Aug 11 '14 13:08 Jigsaw5279

@Jigsaw5279 Apparently if you put .deck-container into full screen mode, the auto width doesn't translate into full width like it does in normal mode. If you want a workaround until I can include this into the next release:

.deck-container:-webkit-full-screen,
.deck-container:fullscreen {
  width:100%;
}

Note, I've only seen this problem in Webkit based browsers, Chrome and Safari. I didn't see it in Firefox. I didn't test it in IE 11. Add the -moz and -ms flavored prefixes if necessary.

imakewebthings avatar Mar 22 '15 20:03 imakewebthings