HFP-815 Added function to limit number of auto plays at a time.

pull/4/merge
Andreas Nergaard 2017-05-09 10:27:50 +02:00
parent 44125fa5ca
commit 6374504868
1 changed files with 17 additions and 0 deletions

View File

@ -353,6 +353,8 @@ H5P.QuestionSet = function (options, contentId, contentData) {
currentQuestion = questionNumber;
handleAutoPlay(currentQuestion);
// Hide all questions
$('.question-container', $myDom).hide().eq(questionNumber).show();
@ -403,6 +405,21 @@ H5P.QuestionSet = function (options, contentId, contentData) {
return currentQuestion;
};
/**
* Handle autoplays, limit to one at a time
*/
var handleAutoPlay = function (currentQuestion) {
for (var i = 0; i < questionInstances.length; i++) {
questionInstances[i].pause();
}
var hasAutoPlay = params.questions[currentQuestion].params.media.params.playback.autoplay;
if (hasAutoPlay) {
questionInstances[currentQuestion].play();
}
};
/**
* Show solutions for subcontent, and hide subcontent buttons.
* Used for contracts with integrated content.