Files
edu/app/src/main/assets/js/nav.js
T
Sebastian Molenda b8b7b3860b
Deploy to FTP / deploy (push) Successful in 16s
Build APK / build (push) Successful in 2m8s
0.2.2
2026-05-27 14:21:02 +02:00

14 lines
430 B
JavaScript

// Back-to-hub button with active-task confirmation
(function () {
document.addEventListener('DOMContentLoaded', () => {
const backBtn = document.getElementById('back-to-hub')
if (!backBtn) return
// Immediately navigate back to hub/menu without confirmation
backBtn.addEventListener('click', (e) => {
const href = backBtn.getAttribute('href')
if (href) window.location.href = href
})
})
})()