1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2025-12-18 05:41:31 +00:00

Accessibility Bug Fix: Tab focus doesn't reach Dark mode toggle button (#453)

This commit is contained in:
Bhavy Khatri
2021-11-30 21:53:22 +05:30
committed by GitHub
parent 602e98448d
commit 707466b1df
2 changed files with 8 additions and 2 deletions

View File

@@ -142,4 +142,10 @@
});
$("#mode-toggle-wrapper").keyup(function(e){
if(e.keyCode == 13) {
toggle.flipMode();
}
});
</script>