Archived
1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
SOD/public/javascripts/admin/departments.js

6 lines
205 B
JavaScript
Raw Permalink Normal View History

2020-09-29 14:44:59 +02:00
document.querySelectorAll(".delete")
2020-08-20 13:34:50 +02:00
.forEach(e => e.addEventListener("click", ev => {
if (!confirm("Do you really want to remove this department ?"))
ev.preventDefault();
}));