Initial commit, source code of Gitea 1.23.1
This commit is contained in:
10
web_src/js/features/repo-issue-pr-status.ts
Normal file
10
web_src/js/features/repo-issue-pr-status.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
export function initRepoPullRequestCommitStatus() {
|
||||
for (const btn of document.querySelectorAll('.commit-status-hide-checks')) {
|
||||
const panel = btn.closest('.commit-status-panel');
|
||||
const list = panel.querySelector<HTMLElement>('.commit-status-list');
|
||||
btn.addEventListener('click', () => {
|
||||
list.style.maxHeight = list.style.maxHeight ? '' : '0px'; // toggle
|
||||
btn.textContent = btn.getAttribute(list.style.maxHeight ? 'data-show-all' : 'data-hide-all');
|
||||
});
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user