1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2025-06-08 16:48:09 +00:00
2023-02-15 04:53:40 +08:00

14 lines
345 B
JavaScript

/**
* Listener for theme mode toggle
*/
$(function () {
$(".mode-toggle").on('click',(e) => {
const $target = $(e.target);
let $btn = ($target.prop("tagName") === "button".toUpperCase() ?
$target : $target.parent());
$btn.trigger('blur'); // remove the clicking outline
flipMode();
});
});