Cannot select radio scale buttons

PennController for IBEX Forums Support Cannot select radio scale buttons

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #7725
    mschrumpf
    Participant

    Hello everyone.
    I have encountered a problem where it is impossible to select any buttons on a radio scale.
    The problem is in “Fragebogen2” in this experiment
    The code was copied directly from this older experiment, where everything still works fine.
    What is going on here?

    Matthias

    #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

    #7727
    mschrumpf
    Participant

    Hello Jeremy
    thank you very much. Looks like that solved the problem.

    Matthias

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.