auto: PR for feat/auto-pipeline-retest #12

Closed
jaybe wants to merge 26 commits from feat/auto-pipeline-retest into main
Showing only changes of commit d2928501f6 - Show all commits
+11
View File
@@ -282,6 +282,17 @@ function buildJs() {
(function(){
var ts = document.querySelector('input[name="_ts"]');
if(ts){ ts.value = String(Date.now()); }
// Ensure skip-link moves focus into main for a11y
var skip = document.querySelector('a.skip-link');
var main = document.getElementById('main');
if (skip && main) {
skip.addEventListener('click', function(){
if (!main.hasAttribute('tabindex')) {
main.setAttribute('tabindex', '-1');
}
main.focus();
});
}
})();
`
}