Files
BlackFruit-UI/plugins/addon/example/template/admin/js/common/lang.js
yiqiu cbd6250967
All checks were successful
continuous-integration/drone/push Build is passing
修改插件
2025-11-21 00:01:45 +08:00

9 lines
455 B
JavaScript

(function () {
document.documentElement.setAttribute('theme-mode', localStorage.getItem('theme-mode') || 'light')
document.documentElement.setAttribute('theme-color', localStorage.getItem('theme-color') || 'default')
if (localStorage.getItem('lang') == null) {
document.writeln('<script src="./lang/zh-cn.js"><\/script>')
} else {
document.writeln('<script src="./lang/' + localStorage.getItem('lang') + '.js"><\/script>')
}
}())