add options to hide ui components

这个提交包含在:
binary-husky
2025-02-07 00:17:36 +08:00
父节点 936e2f5206
当前提交 37f9b94dee
共有 4 个文件被更改,包括 140 次插入27 次删除

查看文件

@@ -141,23 +141,3 @@ setTimeout(() => {
}
"""
js_code_show_or_hide_group2 = """
(display_panel_arr)=>{
setTimeout(() => {
display_panel_arr = get_checkbox_selected_items("cbsc");
let searchString = "添加Live2D形象";
let ele = "none";
if (display_panel_arr.includes(searchString)) {
setCookie("js_live2d_show_cookie", "True", 365);
loadLive2D();
} else {
setCookie("js_live2d_show_cookie", "False", 365);
$('.waifu').hide();
}
}, 50);
}
"""