mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-20 23:28:06 +02:00
Make presentation mode work again in Safari
This commit is contained in:
parent
ac5d1fbb2d
commit
230d8c40e4
1 changed files with 2 additions and 2 deletions
|
@ -104,8 +104,8 @@ var PresentationMode = {
|
|||
this.container.requestFullscreen();
|
||||
} else if (this.container.mozRequestFullScreen) {
|
||||
this.container.mozRequestFullScreen();
|
||||
} else if (this.container.webkitRequestFullScreen) {
|
||||
this.container.webkitRequestFullScreen(Element.ALLOW_KEYBOARD_INPUT);
|
||||
} else if (this.container.webkitRequestFullscreen) {
|
||||
this.container.webkitRequestFullscreen(Element.ALLOW_KEYBOARD_INPUT);
|
||||
} else if (this.container.msRequestFullscreen) {
|
||||
this.container.msRequestFullscreen();
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue