mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-29 04:51:11 +00:00
[assets] Simplify a function expression.
This commit is contained in:
parent
f6c3e581b9
commit
f430363be0
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
document
|
document
|
||||||
.querySelectorAll(`#${mainCheckbox.dataset.target} [type="checkbox"]`)
|
.querySelectorAll(`#${mainCheckbox.dataset.target} [type="checkbox"]`)
|
||||||
.forEach(checkbox => {checkbox.checked = mainCheckbox.checked;});
|
.forEach(checkbox => checkbox.checked = mainCheckbox.checked);
|
||||||
}
|
}
|
||||||
|
|
||||||
document
|
document
|
||||||
|
|
Loading…
Reference in a new issue