INNER CODE UNIT · JavaScript
onceViewAfterUpdate
PerformanC/ReZygisk · webroot/js/pages/settings/index.js:17
export async function onceViewAfterUpdate() {
}
export async function load() {
let ConfigState = {
disableFullscreen: false,
enableSystemFont: false
}
let webui_config = localStorage.getItem('/ReZygisk/webui_config')
if (!webui_config) {
localStorage.setItem('/ReZygisk/webui_config', JSON.stringify(ConfigState))
} else {
ConfigState = JSON.parse(webui_config)
}