mirror of
https://github.com/smittix/intercept.git
synced 2026-07-26 09:48:09 -07:00
Revert TSCM menu changes - restore original layout
The simplified layout was causing display issues. Reverting to the original working version. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -7530,23 +7530,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
// TSCM collapsible section toggle
|
||||
function toggleTscmSection(contentId) {
|
||||
const content = document.getElementById(contentId);
|
||||
const icon = document.getElementById(contentId + 'Icon');
|
||||
const section = content.closest('.tscm-collapsible');
|
||||
|
||||
if (content.style.display === 'none') {
|
||||
content.style.display = 'block';
|
||||
icon.textContent = '-';
|
||||
section.classList.add('expanded');
|
||||
} else {
|
||||
content.style.display = 'none';
|
||||
icon.textContent = '+';
|
||||
section.classList.remove('expanded');
|
||||
}
|
||||
}
|
||||
|
||||
async function startTscmSweep() {
|
||||
const sweepType = document.getElementById('tscmSweepType').value;
|
||||
const baselineId = document.getElementById('tscmBaselineSelect').value || null;
|
||||
|
||||
Reference in New Issue
Block a user