From 564f8dcf4ead00e08210a3609055b51b031581e2 Mon Sep 17 00:00:00 2001 From: x01dc Date: Wed, 22 Jul 2026 14:53:49 +0200 Subject: [PATCH] remove date parameter --- .../plugins/OMNY_shared/eps/eps_synoptic.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/csaxs_bec/bec_ipython_client/plugins/OMNY_shared/eps/eps_synoptic.html b/csaxs_bec/bec_ipython_client/plugins/OMNY_shared/eps/eps_synoptic.html index 4d1cd22..35d87dc 100644 --- a/csaxs_bec/bec_ipython_client/plugins/OMNY_shared/eps/eps_synoptic.html +++ b/csaxs_bec/bec_ipython_client/plugins/OMNY_shared/eps/eps_synoptic.html @@ -67,7 +67,7 @@ function ago(e){ if(!e) return "never"; const d=Date.now()/1000-e; let svgEl=null, byPv=new Map(); async function loadSvg(){ - const r=await fetch("eps_synoptic.svg?t="+Date.now(),{cache:"no-store"}); + const r=await fetch("eps_synoptic.svg",{cache:"no-store"}); const txt=await r.text(); document.getElementById("vp").innerHTML=txt; svgEl=document.getElementById("eps-synoptic-svg"); @@ -209,7 +209,7 @@ window.addEventListener("resize",fit); async function tick(){ try{ - const r=await fetch("eps_status.json?t="+Date.now(),{cache:"no-store"}); + const r=await fetch("eps_status.json",{cache:"no-store"}); if(r.ok) applyData(await r.json()); }catch(e){} }