From 75e34733a84ad27695b6471484125a9636f871b8 Mon Sep 17 00:00:00 2001 From: posimai Date: Sun, 12 Apr 2026 13:10:08 +0900 Subject: [PATCH] chore(station-b): remove dead renderBinBar function Made-with: Cursor --- posimai-dev/station-b.html | 9 --------- 1 file changed, 9 deletions(-) diff --git a/posimai-dev/station-b.html b/posimai-dev/station-b.html index 1819bb20..d0b7bcb7 100644 --- a/posimai-dev/station-b.html +++ b/posimai-dev/station-b.html @@ -506,15 +506,6 @@ function buildServiceCards(){ }); } -function renderBinBar(id,pct,warnTh,critTh){ - const el=document.getElementById(id); if(!el)return; - const cells=20,filled=Math.round(pct/100*cells); - const cls=pct>critTh?'crit':pct>warnTh?'warn':''; - el.className='bin-bar'+(cls?' '+cls:''); - el.innerHTML=Array.from({length:cells},(_,i)=> - `${i` - ).join(''); -} function updateSparkline(id, ms, ok){ const h = svcLatHist[id];