Files
edu/app/build/intermediates/assets/debug/js/nav.js
T
Sebastian Molenda 6c4b5f4adf
Deploy to FTP / deploy (push) Successful in 5s
Build APK / build (push) Successful in 1m58s
0.2.3
2026-05-27 14:57:44 +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
})
})
})()