Merge branch 'override-buttons' of github.com:h5p/h5p-question-set into override-buttons
commit
3f7d5a52f8
|
@ -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
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -101,11 +101,11 @@
|
|||
"label": "Question type",
|
||||
"description": "Library for this question.",
|
||||
"options": [
|
||||
"H5P.MultiChoice 1.0",
|
||||
"H5P.DragQuestion 1.0",
|
||||
"H5P.Blanks 1.0",
|
||||
"H5P.MarkTheWords 1.0",
|
||||
"H5P.DragText 1.0"
|
||||
"H5P.MultiChoice 1.1",
|
||||
"H5P.DragQuestion 1.1",
|
||||
"H5P.Blanks 1.1",
|
||||
"H5P.MarkTheWords 1.1",
|
||||
"H5P.DragText 1.1"
|
||||
]
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue