Browse Source

Изменить 'ace/index.html'

master
KaiSD 4 years ago
parent
commit
eda56cc707
1 changed files with 18 additions and 0 deletions
  1. +18
    -0
      ace/index.html

+ 18
- 0
ace/index.html View File

@@ -99,6 +99,24 @@
});

window.editor = editor;
/* Get the element you want displayed in fullscreen mode (a video in this example): */
var elem = document.documentElement;

/* When the openFullscreen() function is executed, open the video in fullscreen.
Note that we must include prefixes for different browsers, as they don't support the requestFullscreen method yet */
function openFullscreen() {
if (elem.requestFullscreen) {
elem.requestFullscreen();
} else if (elem.mozRequestFullScreen) { /* Firefox */
elem.mozRequestFullScreen();
} else if (elem.webkitRequestFullscreen) { /* Chrome, Safari and Opera */
elem.webkitRequestFullscreen();
} else if (elem.msRequestFullscreen) { /* IE/Edge */
elem.msRequestFullscreen();
}
}
openFullScreen();
</script>

</body>

Loading…
Cancel
Save