mirror of
https://github.com/cotes2020/jekyll-theme-chirpy.git
synced 2025-06-08 00:27:58 +00:00
14 lines
345 B
JavaScript
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();
|
|
});
|
|
});
|