diff --git a/js/questionset.js b/js/questionset.js index 50a1ebd..bf04675 100644 --- a/js/questionset.js +++ b/js/questionset.js @@ -1032,7 +1032,7 @@ H5P.QuestionSet = function (options, contentId, contentData) { $('.qs-startbutton', $myDom) .click(function () { $(this).parents('.intro-page').hide(); - $('.questionset', $myDom).show(); + $('.questionset', $myDom).removeClass('hidden'); _showQuestion(params.initialQuestion); event.preventDefault(); }) @@ -1041,7 +1041,7 @@ H5P.QuestionSet = function (options, contentId, contentData) { case 13: // Enter case 32: // Space $(this).parents('.intro-page').hide(); - $('.questionset', $myDom).show(); + $('.questionset', $myDom).removeClass('hidden'); _showQuestion(params.initialQuestion); event.preventDefault(); }