diff --git a/js/questionset.js b/js/questionset.js index 6050ae4..f93c871 100644 --- a/js/questionset.js +++ b/js/questionset.js @@ -355,7 +355,7 @@ H5P.QuestionSet = function (options, contentId) { question.attach($('.question-container:eq(' + i + ')', $myDom)); question.on('xAPI', function (event) { - if (event.verb === 'attempted') { + if (event.getVerb() === 'attempted') { $('.progress-dot:eq(' + currentQuestion +')', $myDom).removeClass('unanswered').addClass('answered'); _updateButtons(); }