forked from GithubBackups/healthchecks
6 lines
157 B
JavaScript
6 lines
157 B
JavaScript
$(function () {
|
|
$("input[type=radio][name=theme]").change(function() {
|
|
document.body.classList.toggle("dark", this.value == "dark");
|
|
});
|
|
});
|