This commit is contained in:
Zeijlon (ThinLinc Team) 2026-05-24 11:53:59 +08:00 committed by GitHub
commit 74b2aacd0a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -152,8 +152,8 @@ const UI = {
initFullscreen() {
// Only show the button if fullscreen is properly supported
// * Safari doesn't support alphanumerical input while in fullscreen
if (!isSafari() &&
// * Safari on iOS doesn't support alphanumerical input while in fullscreen
if (!(isSafari() && isIOS()) &&
(document.documentElement.requestFullscreen ||
document.documentElement.mozRequestFullScreen ||
document.documentElement.webkitRequestFullscreen ||