damientheodore's picture
AutoExpress Docker version 1.0
424f388
raw
history blame contribute delete
187 Bytes
function openModal() {
document.getElementById('modalOverlay').style.display = 'flex';
}
function closeModal() {
document.getElementById('modalOverlay').style.display = 'none';
}