Added the override settings into the correct subcontent semantics group.
parent
1d5dd18742
commit
33f9ea3ba1
|
@ -109,8 +109,6 @@ H5P.QuestionSet = function (options, contentId) {
|
||||||
var $myDom;
|
var $myDom;
|
||||||
renderSolutions = false;
|
renderSolutions = false;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Instantiate question instances
|
// Instantiate question instances
|
||||||
for (var i = 0; i < params.questions.length; i++) {
|
for (var i = 0; i < params.questions.length; i++) {
|
||||||
var question = params.questions[i];
|
var question = params.questions[i];
|
||||||
|
@ -120,8 +118,10 @@ H5P.QuestionSet = function (options, contentId) {
|
||||||
if (params.override.overrideButtons) {
|
if (params.override.overrideButtons) {
|
||||||
// Extend subcontent with the overrided settings.
|
// Extend subcontent with the overrided settings.
|
||||||
$.extend(question.params, {
|
$.extend(question.params, {
|
||||||
enableRetry: params.override.overrideRetry,
|
behaviour: {
|
||||||
enableSolutionsButton: params.override.overrideShowSolutionButton
|
enableRetry: params.override.overrideRetry,
|
||||||
|
enableSolutionsButton: params.override.overrideShowSolutionButton
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue