diff --git a/js/questionset.js b/js/questionset.js index 1595880..04d3d27 100644 --- a/js/questionset.js +++ b/js/questionset.js @@ -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 }); } diff --git a/semantics.json b/semantics.json index a635dc2..13527c1 100644 --- a/semantics.json +++ b/semantics.json @@ -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 } ]