mirror of
https://github.com/jlengrand/bugsink.git
synced 2026-03-10 08:01:17 +00:00
clicking around checkbox (in the list) works too
This commit is contained in:
6
static/js/issue_list.js
Normal file
6
static/js/issue_list.js
Normal file
@@ -0,0 +1,6 @@
|
||||
"use strict";
|
||||
|
||||
function toggleContainedCheckbox(td) {
|
||||
const checkbox = td.querySelector("[type=\"checkbox\"]");
|
||||
checkbox.checked = !checkbox.checked;
|
||||
}
|
||||
Reference in New Issue
Block a user