From 4cebd49d4d2005ba1aa375f033eccf00568be0e8 Mon Sep 17 00:00:00 2001 From: mr21 Date: Sun, 12 May 2024 02:37:14 +0200 Subject: [PATCH] tests: gsuiTimeline, fix --- gsuiTimeline/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gsuiTimeline/index.html b/gsuiTimeline/index.html index 90b85497..a4cdc921 100644 --- a/gsuiTimeline/index.html +++ b/gsuiTimeline/index.html @@ -100,7 +100,7 @@ inpPBB.oninput = e => GSUsetAttribute( timeline, "pxperbeat", inpPBB.value ); inpBPM.oninput = inpSPB.oninput = e => GSUsetAttribute( timeline, "timedivision", `${ inpBPM.value }/${ inpSPB.value }` ); -document.body.oninput = e => e.target.nextElementSibling.nextElementSibling.textContent = e.target.value; +document.querySelector( "#testCtrls" ).oninput = e => e.target.nextElementSibling.nextElementSibling.textContent = e.target.value;