thedesk/app/js/ui/theme.js

13 lines
231 B
JavaScript
Raw Normal View History

2018-01-28 23:22:43 +11:00
//テーマ適用
function themes(theme) {
if (!theme) {
var theme = localStorage.getItem("theme");
}
if (theme == "black") {
$("html").addClass("blacktheme");
} else {
$("html").removeClass("blacktheme");
}
}
themes();