Manually port over change from PR #1616

This commit is contained in:
Sam Potts 2020-01-13 16:18:05 +00:00
parent 8736fa8a52
commit c09b9ac01c

View File

@ -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}`]();
}