dialogs.js
ASCII text
1
document.body.addEventListener('click', function (event) {
2
const dialog = event.target.closest('dialog'); // Find the closest dialog element
3
if (event.target.matches('dialog')) {
4
event.target.close();
5
}
6
});
7