29 lines
602 B
JavaScript
29 lines
602 B
JavaScript
/**
|
|
* Main JS
|
|
*/
|
|
|
|
function confirmDelete(message = '¿Estás seguro de eliminar este registro?') {
|
|
return confirm(message);
|
|
}
|
|
|
|
function openModal(modalId) {
|
|
const modal = document.getElementById(modalId);
|
|
if (modal) {
|
|
modal.style.display = 'flex';
|
|
}
|
|
}
|
|
|
|
function closeModal(modalId) {
|
|
const modal = document.getElementById(modalId);
|
|
if (modal) {
|
|
modal.style.display = 'none';
|
|
}
|
|
}
|
|
|
|
// Cerrar modales clickeando fuera
|
|
window.onclick = function (event) {
|
|
if (event.target.classList.contains('modal')) {
|
|
event.target.style.display = "none";
|
|
}
|
|
}
|