Reply To: Cannot select radio scale buttons

PennController for IBEX Forums Support Cannot select radio scale buttons Reply To: Cannot select radio scale buttons

#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