删除分屏选项:移除 HTML 控件、JS 函数、CSS 规则
This commit is contained in:
@@ -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');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// ── 动作选择 ──────────────────────────────────────
|
||||
|
||||
Reference in New Issue
Block a user