Project-settings buttons at bottom of issue-list

This commit is contained in:
Klaas van Schelven
2024-06-17 12:37:24 +02:00
parent b77fc630e5
commit 2d7a261515
4 changed files with 52 additions and 1 deletions

View File

@@ -38,3 +38,8 @@ function matchMainCheckboxStateToIssueCheckboxes() {
mainCheckbox.checked = false;
}
}
function followContainedLink(circleDiv) {
const link = circleDiv.querySelector("a");
window.location.href = link.href;
}