diff --git a/rdp-proxy/entrypoint.sh b/rdp-proxy/entrypoint.sh index 4053da1..0077b4e 100644 --- a/rdp-proxy/entrypoint.sh +++ b/rdp-proxy/entrypoint.sh @@ -120,6 +120,8 @@ cat > /opt/portal/index.html < { const hint = document.getElementById('co-hint'); if (hint) hint.style.display = 'block'; + const title = document.querySelector('.co-title'); + if (title) title.style.display = 'none'; coEl.addEventListener('pointerdown', function onCoClick() { coEl.removeEventListener('pointerdown', onCoClick); if (!document.fullscreenElement) { diff --git a/universal-runtime/entrypoint.sh b/universal-runtime/entrypoint.sh index bb99282..2cc46ad 100755 --- a/universal-runtime/entrypoint.sh +++ b/universal-runtime/entrypoint.sh @@ -102,6 +102,8 @@ cat > /opt/portal/index.html <<'HTML' overlayHidden = true; const hint = document.getElementById('co-hint'); if (hint) hint.style.display = 'block'; + const title = document.querySelector('.co-title'); + if (title) title.style.display = 'none'; coEl.addEventListener('pointerdown', function onCoClick() { coEl.removeEventListener('pointerdown', onCoClick); if (!document.fullscreenElement) {