From 6c7fbb28b12719305c67b8060cc66095f943263e Mon Sep 17 00:00:00 2001 From: TianXuan Developer Date: Sat, 25 Jul 2026 10:52:54 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20moveend=E5=8D=B3=E6=97=B6=E9=87=8D?= =?UTF-8?q?=E7=BB=98+=E7=BC=93=E5=AD=98=E6=B8=85=E9=99=A4,canvas=E8=B7=9F?= =?UTF-8?q?=E9=9A=8F=E5=9C=B0=E5=9B=BE=E5=B9=B3=E7=A7=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude --- simple_analysis/templates/simple_analysis/simple_analysis.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simple_analysis/templates/simple_analysis/simple_analysis.html b/simple_analysis/templates/simple_analysis/simple_analysis.html index a4b6d69..ca1be5d 100644 --- a/simple_analysis/templates/simple_analysis/simple_analysis.html +++ b/simple_analysis/templates/simple_analysis/simple_analysis.html @@ -2672,7 +2672,7 @@ function loadTrafficData() { document.getElementById('saTrafficSlider').value = 0; document.getElementById('saTrafficInfo').textContent = (d.windows||[]).length + ' 窗口 · ' + Object.keys(d.nodes_coords||{}).length + ' 节点 · 跨度' + ((maxTs-minTs)/60).toFixed(0) + 'min'; - SA.map.off('moveend.flowCache').on('moveend.flowCache', () => { _trafficEdgeCache = {}; }); + SA.map.off('moveend.flowCache').on('moveend.flowCache', () => { _trafficEdgeCache = {}; if (_trafficPlaying) renderTrafficCrossfade(); }); document.getElementById('saTrafficTime').textContent = tsToBJ(_trafficCurrentTime); trafficStart(); })