Files
allstarr/allstarr/wwwroot/js/modals.js
T
joshpatra 8d6dd7ccf1
Docker Build & Push / build-and-test (push) Has been cancelled
Docker Build & Push / docker (push) Has been cancelled
v1.0.3-beta.1: Refactored all large files, Fixed the cron schedule bug, hardened security, added global mapping for much more stable matchings
2026-02-16 14:59:21 -05:00

18 lines
439 B
JavaScript

// Modal management
export function openModal(id) {
document.getElementById(id).classList.add('active');
}
export function closeModal(id) {
document.getElementById(id).classList.remove('active');
}
export function setupModalBackdropClose() {
document.querySelectorAll('.modal').forEach(modal => {
modal.addEventListener('click', e => {
if (e.target === modal) closeModal(modal.id);
});
});
}