1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2025-06-08 08:37:53 +00:00
Cotes Chung 55fce7574c Refactor theme mode toggle
- Improve mode switching JS execution priority
- Drop deprecated Web API
2021-12-02 05:51:30 +08:00

11 lines
181 B
JavaScript

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