Files
edu/app/build/intermediates/assets/debug/js/nav.js
T
Sebastian Molenda 0b3c8e8a02
Deploy to FTP / deploy (push) Successful in 1m47s
Build APK / build (push) Successful in 3m50s
prawie dziala
2026-05-27 13:51:51 +02:00

18 lines
632 B
JavaScript

// 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')
}
})
})
})()