SoulBook/soulbook/static/md/js/theme.js
2024-08-01 19:38:07 +08:00

24 lines
505 B
JavaScript

/**
* Created by howie on 06/08/2017.
*/
// $("#soulbook-light").checked(function () {
// alert('hello')
// });
//
$("#themeBtn").click(function () {
var val = $('input:radio[name="owl-theme-layout"]:checked').val();
if (val == null) {
alert("干啥呢!");
return false;
}
else {
if (val == 'dark') {
$("body").addClass("mdui-theme-layout-dark");
} else {
$("body").removeClass("mdui-theme-layout-dark");
}
}
});