You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By using the H5P Multi Choice inside a H5P Question Set, the minus or plus points are not shown on the "show solution" pages - although "show score points" is set to true.
I figured out, that they will display after changing the code as follows: inside the function "showAllSolutions" change
By using the H5P Multi Choice inside a H5P Question Set, the minus or plus points are not shown on the "show solution" pages - although "show score points" is set to true.
I figured out, that they will display after changing the code as follows: inside the function "showAllSolutions" change
}).find('.h5p-question-plus-one, .h5p-question-minus-one').remove();
to
if (params.behaviour.showScorePoints === false) { this.find(".h5p-question-plus-one, .h5p-question-minus-one").remove(); } });
The text was updated successfully, but these errors were encountered: