Fix pieces values and notation for Ball variant. Add quick description of Doublearmy...
[vchess.git] / client / src / utils / modalClick.js
1 export function processModalClick(e) {
2 // Close a modal when click on it but outside focused element
3 const data = e.target.dataset;
4 if (data.checkbox) document.getElementById(data.checkbox).checked = false;
5 }