Merge branch 'override-buttons' of github.com:h5p/h5p-question-set into override-buttons
commit
549216fd31
|
@ -95,7 +95,7 @@ H5P.QuestionSet = function (options, contentId) {
|
|||
override: {
|
||||
overrideButtons: false,
|
||||
overrideShowSolutionButton: false,
|
||||
overrideRetryButton: false
|
||||
overrideRetry: false
|
||||
},
|
||||
postUserStatistics: (H5P.postUserStatistics === true)
|
||||
};
|
||||
|
@ -120,7 +120,7 @@ H5P.QuestionSet = function (options, contentId) {
|
|||
if (params.override.overrideButtons) {
|
||||
// Extend subcontent with the overrided settings.
|
||||
$.extend(question.params, {
|
||||
enableRetry: params.override.overrideRetryButton,
|
||||
enableRetry: params.override.overrideRetry,
|
||||
enableSolutionsButton: params.override.overrideShowSolutionButton
|
||||
});
|
||||
}
|
||||
|
|
|
@ -289,8 +289,8 @@
|
|||
{
|
||||
"name": "override",
|
||||
"type": "group",
|
||||
"label": "Settings for \"Show solution\" and \"Retry\" buttons",
|
||||
"description": "These options will let you override when to display \"Show solution\" and \"Retry\" buttons in integrated h5p content.",
|
||||
"label": "Settings for \"Show solution\" button and \"Retry\".",
|
||||
"description": "These options will let you override when to display \"Show solution\" button and \"Retry\" in integrated h5p content.",
|
||||
"optional": true,
|
||||
"fields": [
|
||||
{
|
||||
|
@ -308,10 +308,10 @@
|
|||
"default": false
|
||||
},
|
||||
{
|
||||
"name": "overrideRetryButton",
|
||||
"name": "overrideRetry",
|
||||
"type": "boolean",
|
||||
"label": "Enable \"Retry\" buttons.",
|
||||
"description": "Enabling this option will make questions show the \"Retry\" button.",
|
||||
"label": "Enable \"Retry\".",
|
||||
"description": "Enabling this option will make the user able to \"Retry\" .",
|
||||
"default": false
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue