Revert "feat: add HTML report screenshot generation via Playwright"

This reverts commit f370caeff9.
This commit is contained in:
2026-06-07 23:12:21 +08:00
parent f370caeff9
commit d898ba0fd5
4 changed files with 5 additions and 332 deletions

View File

@@ -152,15 +152,11 @@ tr.below-threshold { color: #484f58; }
</div>
<script>
// Use window. to allow external access (for Playwright screenshot injection)
window.DATA = null;
window.currentIdx = 0;
window.playing = false;
window.playTimer = null;
window.rebalanceDays = [];
// Convenience aliases for script-internal use
const DATA_PROXY = { get data() { return window.DATA; }, set data(v) { window.DATA = v; } };
let DATA = null;
let currentIdx = 0;
let playing = false;
let playTimer = null;
let rebalanceDays = [];
const $ = id => document.getElementById(id);