hello apk

This commit is contained in:
Sebastian Molenda
2026-05-26 22:16:09 +02:00
parent 7bab05fb24
commit 202562878a
28 changed files with 61 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
// Back-to-hub button with active-task confirmation
(function () {
document.addEventListener('DOMContentLoaded', () => {
const backBtn = document.getElementById('back-to-hub')
if (!backBtn) return
backBtn.addEventListener('click', (e) => {
const playScreen = document.getElementById('play-screen')
const taskActive = playScreen && !playScreen.classList.contains('hidden')
if (taskActive) {
e.preventDefault()
const ok = confirm('Masz aktywne zadanie. Czy na pewno chcesz wyjść do menu?')
if (ok) window.location.href = backBtn.getAttribute('href')
}
})
})
})()