From b1eac864f91dbf87ba674ae02b91f2a23fda9c3b Mon Sep 17 00:00:00 2001 From: Oliver Tacke Date: Tue, 16 Apr 2024 20:17:57 +0200 Subject: [PATCH] HFP-3919 Remove title attribute from button --- scripts/go-to-question.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/go-to-question.js b/scripts/go-to-question.js index b1524db..11c3ca5 100644 --- a/scripts/go-to-question.js +++ b/scripts/go-to-question.js @@ -94,8 +94,7 @@ H5P.GoToQuestion = (function ($, EventDispatcher, UI) { // Create continue button $continueButton = UI.createButton({ 'class': GoToQuestion.htmlClass + '-continue', - html: parameters.continueButtonLabel, - title: parameters.continueButtonLabel + html: parameters.continueButtonLabel }); };