diff --git a/js/questionset.js b/js/questionset.js index e01600d..3d008ba 100644 --- a/js/questionset.js +++ b/js/questionset.js @@ -688,6 +688,17 @@ H5P.QuestionSet = function (options, contentId, contentData) { }); } + // Restore feedback-section wrapper removed in VA-460 so the + // overall feedback text and score bar have a place to render. + $('
', { + class: 'feedback-section', + append: [ + $('
', { class: 'feedback-scorebar' }), + $('
', { class: 'feedback-text' }) + ], + appendTo: self.$resultPage + }); + self.$buttonsContainer = $('
', { class: 'buttons', appendTo: self.$resultPage