From a3e9581c4b301501ede124ea8d32b14032968fae Mon Sep 17 00:00:00 2001 From: Marc Froehlich Date: Mon, 13 Jul 2026 00:28:26 +0200 Subject: [PATCH] modify interactive aircraft scatter hero effect --- website/src/assets/js/hero-radio-fx.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/src/assets/js/hero-radio-fx.js b/website/src/assets/js/hero-radio-fx.js index 7cb2787..61fa498 100644 --- a/website/src/assets/js/hero-radio-fx.js +++ b/website/src/assets/js/hero-radio-fx.js @@ -77,8 +77,8 @@ function stations() { const targetX = state.width * 0.54; const targetY = state.height * 0.43; - const left = { x: state.width * 0.075, y: state.height * 0.82, label: "JN49EM" }; - const right = { x: state.width * 0.925, y: state.height * 0.80, label: "JO66MD" }; + const left = { x: state.width * 0.075, y: state.height * 0.82, label: "JO51IJ" }; + const right = { x: state.width * 0.925, y: state.height * 0.80, label: "JN49FL" }; left.angle = Math.atan2(targetY - left.y, targetX - left.x); right.angle = Math.atan2(targetY - right.y, targetX - right.x); return [left, right];