aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhellekin <hellekin@cepheide.org>2025-08-06 18:37:47 +0200
committerhellekin <hellekin@cepheide.org>2025-08-06 18:37:47 +0200
commit995ebb12bfeee56849b78bf2b99c0cf612da2c1c (patch)
treee188c0600583ea436493ba96311f15c3e011909d
parentfeb11f47abf7fe6796b559b5377a3139a9a7ad5e (diff)
downloadlesoiseaux.io-995ebb12bfeee56849b78bf2b99c0cf612da2c1c.tar.gz
Fix JS error?v1.4.12v1.4.11
-rw-r--r--ps/gfx/sine.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ps/gfx/sine.js b/ps/gfx/sine.js
index df658f4..678fd26 100644
--- a/ps/gfx/sine.js
+++ b/ps/gfx/sine.js
@@ -46,7 +46,7 @@
.append("rect").attr("width", h).attr("height", w)
const graphContainer = svg.append("g")
- .attr('transform', `translate(-${initialX}, -${initialY})`);
+ .attr('transform', `translate(-${initialX}, ${initialY})`);
const state = {
initialX,