删除分屏选项:移除 HTML 控件、JS 函数、CSS 规则

This commit is contained in:
2026-03-17 21:02:05 +08:00
parent 0ce969ef69
commit 630a3a6dde
3 changed files with 1 additions and 31 deletions
@@ -70,12 +70,6 @@
滚屏
</label>
<label>分屏:
<select id="split_screen" onchange="changeSplitScreen(this.value)">
<option value="0">单窗</option>
<option value="1">上下分</option>
</select>
</label>
@if (
$user->user_level >= (int) \App\Models\Sysparam::getValue('level_announcement', '10') ||
@@ -115,15 +115,6 @@
});
}
// ── 分屏切换 ──────────────────────────────────────
function changeSplitScreen(mode) {
const panes = document.getElementById('message-panes');
if (mode === '1') {
panes.classList.add('split-h');
} else {
panes.classList.remove('split-h');
}
}
// ── 动作选择 ──────────────────────────────────────