Open danielruss opened 5 months ago
@danielruss - thanks for highlighting that change! switching the one line back appears to resolve everything, Joe has an additional test he is going to run for VoiceOver
This bug was addressed in https://github.com/episphere/quest/pull/444, and the revert/fix is included in release v1.1.7.
When the code was changed for in-survey accessibility enhancements (#436) The code to hand the "others" was changed.
originally:
RadioCB is the input[type="radio"] or input[type="checkbox"] associated with the other input box.
This was changed to
let radioCB = document.getElementById(inputElement.id) which is the type box.
This is why the results are screwing up when the "other" is selected.
https://github.com/episphere/quest/blob/ec22434a7a942dcabc92e02abc66d550eec27f6a/replace2.js#L1036-L1037