mirror of
https://github.com/jlengrand/bugsink.git
synced 2026-03-10 08:01:17 +00:00
7 lines
160 B
JavaScript
7 lines
160 B
JavaScript
"use strict";
|
|
|
|
function toggleContainedCheckbox(td) {
|
|
const checkbox = td.querySelector("[type=\"checkbox\"]");
|
|
checkbox.checked = !checkbox.checked;
|
|
}
|