PennController for IBEX › Forums › Support › Cannot select radio scale buttons › Reply To: Cannot select radio scale buttons
February 7, 2022 at 2:26 pm
#7726
Jeremy
Keymaster
Hi,
Replace the line $("body").click(e=>e.target.type=="range"&&this.scales.push(e.target.parentElement.classList[1].replace(/PennController-/,'')));
with
$("body").click(e=>{
if (e.target.type=="range")
this.scales.push(e.target.parentElement.classList[1].replace(/PennController-/,''))
}); }).call()
in your “Uebung” trials
Jeremy