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

Refactor theme mode toggle

- Improve mode switching JS execution priority
- Drop deprecated Web API
This commit is contained in:
Cotes Chung
2021-12-01 19:51:25 +08:00
parent 707466b1df
commit 55fce7574c
10 changed files with 77 additions and 80 deletions

View File

@@ -0,0 +1,10 @@
/*
* Document-reday functions for '#mode-toggle-wrapper'
*/
$(function() {
$("#mode-toggle-wrapper").keyup((e) => {
if(e.keyCode === 13) {
flipMode();
}
});
});