diff --git a/css/questionset.css b/css/questionset.css index ce830fa..8448f36 100644 --- a/css/questionset.css +++ b/css/questionset.css @@ -107,7 +107,7 @@ .questionset-results a.h5p-button.qs-retrybutton:before { font-family: 'H5PFontAwesome4'; padding-right: 0.5em; - content: "\f021"; + content: "\f01e"; } .qs-footer > .next, .qs-footer > .finish, .qs-finishbutton { diff --git a/js/questionset.js b/js/questionset.js index 20eba15..be4ec96 100644 --- a/js/questionset.js +++ b/js/questionset.js @@ -391,7 +391,9 @@ H5P.QuestionSet = function (options, contentId) { question.on('xAPI', function (event) { var shortVerb = event.getVerb(); - if (shortVerb === 'interacted') { + if (shortVerb === 'interacted' || + shortVerb === 'answered' || + shortVerb === 'attempted') { $('.progress-dot:eq(' + currentQuestion +')', $myDom).removeClass('unanswered').addClass('answered'); _updateButtons(); }