projects
/
vchess.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Experimental game upload added
[vchess.git]
/
client
/
src
/
utils
/
modalClick.js
1
export function
processModalClick
(
e
,
cb
) {
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
if
(!!
cb
)
cb
();
6
}