h5p / h5p-multi-choice

10 stars 98 forks source link

Minus / plus points are not shown when used in question set #122

Open pixelhexe opened 3 years ago

pixelhexe commented 3 years ago

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(); } });