Skip to content

Commit

Permalink
OnInput Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-leech committed Sep 27, 2024
1 parent 551eba6 commit 1752e41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ui/elements/slider_ab.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export default function slider_ab(params) {
max=${params.max}
step=${params.step}
value=${params.val_a}
oninput=${onRangeInput}/>
oninput=${e => onRangeInput(e, params)}/>
<input data-id="b" type="range"
name="maxRangeInput"
min=${params.min}
Expand Down

0 comments on commit 1752e41

Please sign in to comment.