h5p / h5p-question-set

6 stars 83 forks source link

Quiz Start button does not unhide questionset #121

Open ymdahi opened 1 year ago

ymdahi commented 1 year ago

Problem

When a Quiz has Title enabled, clicking on the "Start Quiz" button does not unhide the Questions (.questionset)

Tested on v 1.20.11.

Example: https://studio.libretexts.org/h5p/14416/embed

Possible Solution

Consider replace L1035: https://github.com/h5p/h5p-question-set/blob/9b00511d2280c4d461bea46247843aee631f8b73/js/questionset.js#L1035

With:

$('.questionset', $myDom).removeClass('hidden');

Or

let questionRegion = myDom.querySelector('.questionset');
questionRegion.classList.remove('hidden');