Finished. Now some last styling
[vchess.git] / client / src / utils / modalClick.js
1 export function processModalClick(e)
2 {
3 // Close a modal when click on it but outside focused element
4 const data = e.target.dataset;
5 if (!!data.checkbox)
6 document.getElementById(data.checkbox).checked = false;
7 }