nav: hide title text when green Enter button appears on overlay

This commit is contained in:
2026-07-20 19:27:09 +00:00
parent 706c647ba6
commit f1449460d0
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -120,6 +120,8 @@ cat > /opt/portal/index.html <<HTML
setTimeout(() => {
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) {
+2
View File
@@ -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) {