blob: bb6ac26ebbeaa724275797fcc6c2e1ff22aba861 [file] [log] [blame]
Copybara botbe50d492023-11-30 00:16:42 +01001window.addEventListener("load", function() {
2 document.querySelectorAll("tr[data-person-id]").forEach(tr => {
3 var checkbox = tr.querySelector("input[type=\"checkbox\"]");
4
5 checkbox.setAttribute("name", "people[]");
6 checkbox.setAttribute("value", tr.getAttribute("data-person-id"));
7 });
8});