aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSam Potts <sam@potts.es>2020-01-13 16:18:05 +0000
committerSam Potts <sam@potts.es>2020-01-13 16:18:05 +0000
commitc09b9ac01c35a78013e08e5a82027b6be7312c18 (patch)
tree69c8b49dabc2d0f6ae91bc468f2ca1e8b1fc657c /src
parent8736fa8a52f9d280f9ae641a7ce43cb421fb5ea0 (diff)
downloadplyr-c09b9ac01c35a78013e08e5a82027b6be7312c18.tar.lz
plyr-c09b9ac01c35a78013e08e5a82027b6be7312c18.tar.xz
plyr-c09b9ac01c35a78013e08e5a82027b6be7312c18.zip
Manually port over change from PR #1616
Diffstat (limited to 'src')
-rw-r--r--src/js/fullscreen.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/fullscreen.js b/src/js/fullscreen.js
index 4de8da88..7ae3ff17 100644
--- a/src/js/fullscreen.js
+++ b/src/js/fullscreen.js
@@ -228,7 +228,7 @@ class Fullscreen {
} else if (!Fullscreen.native || this.forceFallback) {
toggleFallback.call(this, true);
} else if (!this.prefix) {
- this.target.requestFullscreen();
+ this.target.requestFullscreen({ navigationUI: "hide" });
} else if (!is.empty(this.prefix)) {
this.target[`${this.prefix}Request${this.property}`]();
}