parent
b3eccc98de
commit
49c1da3627
|
@ -38,7 +38,7 @@ H5P.QuestionSet = function (options, contentId) {
|
||||||
' <% } %>' +
|
' <% } %>' +
|
||||||
' <div class="qs-footer">' +
|
' <div class="qs-footer">' +
|
||||||
' <div class="qs-progress">' +
|
' <div class="qs-progress">' +
|
||||||
' <% if (progressType == "dots") { %>' +
|
' <% if (progressType == "dots" && !disableBackwardsNavigation) { %>' +
|
||||||
' <ul class="dots-container" role="navigation">' +
|
' <ul class="dots-container" role="navigation">' +
|
||||||
' <% for (var i=0; i<questions.length; i++) { %>' +
|
' <% for (var i=0; i<questions.length; i++) { %>' +
|
||||||
' <li class="progress-item"><a href="#" class="progress-dot unanswered" ' +
|
' <li class="progress-item"><a href="#" class="progress-dot unanswered" ' +
|
||||||
|
@ -113,7 +113,8 @@ H5P.QuestionSet = function (options, contentId) {
|
||||||
retryButtonText: 'Retry',
|
retryButtonText: 'Retry',
|
||||||
showAnimations: false,
|
showAnimations: false,
|
||||||
skipButtonText: 'Skip video'
|
skipButtonText: 'Skip video'
|
||||||
}
|
},
|
||||||
|
disableBackwardsNavigation: false
|
||||||
};
|
};
|
||||||
|
|
||||||
var template = new EJS({text: texttemplate});
|
var template = new EJS({text: texttemplate});
|
||||||
|
@ -125,7 +126,7 @@ H5P.QuestionSet = function (options, contentId) {
|
||||||
var $myDom;
|
var $myDom;
|
||||||
var scoreBar;
|
var scoreBar;
|
||||||
var up;
|
var up;
|
||||||
renderSolutions = false;
|
var renderSolutions = false;
|
||||||
|
|
||||||
var $template = $(template.render(params));
|
var $template = $(template.render(params));
|
||||||
// Set overrides for questions
|
// Set overrides for questions
|
||||||
|
@ -325,9 +326,13 @@ H5P.QuestionSet = function (options, contentId) {
|
||||||
_displayEndGame();
|
_displayEndGame();
|
||||||
|
|
||||||
}
|
}
|
||||||
else {
|
else if (!params.disableBackwardsNavigation || questionInstances[currentQuestion].getAnswerGiven()) {
|
||||||
|
// Allow movement if backward navigation enabled or answer given
|
||||||
_showQuestion(currentQuestion + direction);
|
_showQuestion(currentQuestion + direction);
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
//TODO: Give an error message ? or disable/grey out previous button when not allowed
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -594,7 +599,7 @@ H5P.QuestionSet = function (options, contentId) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add previous question button
|
// Add previous question button
|
||||||
if (questionInstances[0] !== question) {
|
if (questionInstances[0] !== question && !params.disableBackwardsNavigation) {
|
||||||
question.addButton('prev', '', moveQuestion.bind(this, -1), true, {
|
question.addButton('prev', '', moveQuestion.bind(this, -1), true, {
|
||||||
href: '#', // Use href since this is a navigation button
|
href: '#', // Use href since this is a navigation button
|
||||||
'aria-label': params.texts.prevButton
|
'aria-label': params.texts.prevButton
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"contentType": "question",
|
"contentType": "question",
|
||||||
"majorVersion": 1,
|
"majorVersion": 1,
|
||||||
"minorVersion": 9,
|
"minorVersion": 9,
|
||||||
"patchVersion": 0,
|
"patchVersion": 1,
|
||||||
"embedTypes": [
|
"embedTypes": [
|
||||||
"iframe"
|
"iframe"
|
||||||
],
|
],
|
||||||
|
|
|
@ -193,6 +193,14 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "disableBackwardsNavigation",
|
||||||
|
"type": "boolean",
|
||||||
|
"label": "Disable backwards navigation",
|
||||||
|
"description": "This option will only allow you to move forward in Question Set",
|
||||||
|
"optional": true,
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "endGame",
|
"name": "endGame",
|
||||||
"type": "group",
|
"type": "group",
|
||||||
|
|
Loading…
Reference in New Issue