summaryrefslogtreecommitdiffstats
path: root/web_src/js/features/repo-issue-pr-status.js
blob: 7890b9c48db504dc9de2f33dffb56ea949049088 (plain)
1
2
3
4
5
6
7
8
9
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('.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');
    });
  }
}