pull/34/merge
Stefan Cloudt 2021-07-14 01:12:35 +01:00 committed by GitHub
commit 5e12226e68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 11 deletions

View File

@ -1,3 +1,9 @@
.questionset .question-container:not(.h5p-questionset-visible){
position: absolute;
left: -100%;
visibility: hidden;
}
.questionset-results h2 {
font-size: 1.2em;
font-weight: bold;

View File

@ -372,7 +372,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
handleAutoPlay(currentQuestion);
// Hide all questions
$('.question-container', $myDom).hide().eq(questionNumber).show();
$('.question-container', $myDom).removeClass('h5p-questionset-visible').eq(questionNumber).addClass('h5p-questionset-visible');
if (questionInstances[questionNumber]) {
// Trigger resize on question in case the size of the QS has changed.
@ -712,12 +712,12 @@ H5P.QuestionSet = function (options, contentId, contentData) {
var _displayEndGame = function () {
$('.progress-dot.current', $myDom).removeClass('current');
if (rendered) {
$myDom.children().hide().filter('.questionset-results').show();
$myDom.children().removeClass('h5p-questionset-visible').filter('.questionset-results').addClass('h5p-questionset-visible');
self.trigger('resize');
return;
}
//Remove old score screen.
$myDom.children().hide().filter('.questionset-results').remove();
$myDom.children().removeClass('h5p-questionset-visible').filter('.questionset-results').remove();
rendered = true;
// Get total score.
@ -756,28 +756,28 @@ H5P.QuestionSet = function (options, contentId, contentData) {
};
// Show result page.
$myDom.children().hide();
$myDom.children().removeClass('h5p-questionset-visible');
$myDom.append(endTemplate.render(eparams));
if (params.endGame.showResultPage) {
hookUpButton('.qs-solutionbutton', function () {
showSolutions();
$myDom.children().hide().filter('.questionset').show();
$myDom.children().removeClass('h5p-questionset-visible').filter('.questionset').addClass('h5p-questionset-visible');
_showQuestion(params.initialQuestion);
});
hookUpButton('.qs-retrybutton', function () {
resetTask();
$myDom.children().hide();
$myDom.children().removeClass('h5p-questionset-visible');
var $intro = $('.intro-page', $myDom);
if ($intro.length) {
// Show intro
$('.intro-page', $myDom).show();
$('.intro-page', $myDom).addClass('h5p-questionset-visible');
$('.qs-startbutton', $myDom).focus();
}
else {
// Show first question
$('.questionset', $myDom).show();
$('.questionset', $myDom).addClass('h5p-questionset-visible');
_showQuestion(params.initialQuestion);
}
});
@ -811,7 +811,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
if (params.endGame.showAnimations) {
var videoData = success ? params.endGame.successVideo : params.endGame.failVideo;
if (videoData) {
$myDom.children().hide();
$myDom.children().removeClass('h5p-questionset-visible');
var $videoContainer = $('<div class="video-container"></div>').appendTo($myDom);
var video = new H5P.Video({
@ -962,7 +962,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
$('.qs-startbutton', $myDom)
.click(function () {
$(this).parents('.intro-page').hide();
$('.questionset', $myDom).show();
$('.questionset', $myDom).addClass('h5p-questionset-visible');
_showQuestion(params.initialQuestion);
event.preventDefault();
})
@ -971,7 +971,7 @@ H5P.QuestionSet = function (options, contentId, contentData) {
case 13: // Enter
case 32: // Space
$(this).parents('.intro-page').hide();
$('.questionset', $myDom).show();
$('.questionset', $myDom).addClass('h5p-questionset-visible');
_showQuestion(params.initialQuestion);
event.preventDefault();
}