commit-detail.ts
typescript
sha256:cdfe164af70b640f93370907508ae9066c78c19dfd97f36e14aab34c3d539496
docs: add production-readiness checklist
Sonnet 5
32 days ago
| 1 | export function initCommitDetail(): void { |
| 2 | const btn = document.querySelector<HTMLButtonElement>('.cmt-copy-btn'); |
| 3 | const shaEl = document.getElementById('cmt-sha'); |
| 4 | if (!btn || !shaEl) return; |
| 5 | const sha = shaEl.title; |
| 6 | btn.addEventListener('click', () => { |
| 7 | void navigator.clipboard.writeText(sha); |
| 8 | }); |
| 9 | } |
File History
1 commit
sha256:cdfe164af70b640f93370907508ae9066c78c19dfd97f36e14aab34c3d539496
docs: add production-readiness checklist
Sonnet 5
32 days ago