|
|
@@ -467,7 +467,7 @@ export default {
|
|
|
this.pauseAudio();
|
|
|
this.pauseVideo();
|
|
|
this.isFull = true;
|
|
|
- this.goFullscreen();
|
|
|
+ // this.goFullscreen();
|
|
|
},
|
|
|
pauseAudio() {
|
|
|
let audio = document.getElementsByTagName('audio');
|
|
|
@@ -500,15 +500,15 @@ export default {
|
|
|
},
|
|
|
exitFullscreen() {
|
|
|
this.isFull = false;
|
|
|
- if (document.exitFullscreen) {
|
|
|
- document.exitFullscreen();
|
|
|
- } else if (document.msExitFullscreen) {
|
|
|
- document.msExitFullscreen();
|
|
|
- } else if (document.mozCancelFullScreen) {
|
|
|
- document.mozCancelFullScreen();
|
|
|
- } else if (document.webkitExitFullscreen) {
|
|
|
- document.webkitExitFullscreen();
|
|
|
- }
|
|
|
+ // if (document.exitFullscreen) {
|
|
|
+ // document.exitFullscreen();
|
|
|
+ // } else if (document.msExitFullscreen) {
|
|
|
+ // document.msExitFullscreen();
|
|
|
+ // } else if (document.mozCancelFullScreen) {
|
|
|
+ // document.mozCancelFullScreen();
|
|
|
+ // } else if (document.webkitExitFullscreen) {
|
|
|
+ // document.webkitExitFullscreen();
|
|
|
+ // }
|
|
|
},
|
|
|
handleData() {
|
|
|
if (this.data.new_word_list) {
|