Added the override settings into the correct subcontent semantics group.

d3summaryChart
Thomas Marstrander 2014-12-04 10:26:52 +01:00
parent 1d5dd18742
commit 33f9ea3ba1
1 changed files with 4 additions and 4 deletions

View File

@ -109,8 +109,6 @@ H5P.QuestionSet = function (options, contentId) {
var $myDom;
renderSolutions = false;
// Instantiate question instances
for (var i = 0; i < params.questions.length; i++) {
var question = params.questions[i];
@ -120,8 +118,10 @@ H5P.QuestionSet = function (options, contentId) {
if (params.override.overrideButtons) {
// Extend subcontent with the overrided settings.
$.extend(question.params, {
enableRetry: params.override.overrideRetry,
enableSolutionsButton: params.override.overrideShowSolutionButton
behaviour: {
enableRetry: params.override.overrideRetry,
enableSolutionsButton: params.override.overrideShowSolutionButton
}
});
}