From: soufiane Date: Wed, 22 May 2024 12:43:22 +0000 (+0200) Subject: wip #6927 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=4524db449d03191dea98c92df69055c762d59ff7;p=fluidbook-toolbox-quiz.git wip #6927 --- diff --git a/js/quiz.accessibility.js b/js/quiz.accessibility.js index fd65b69..2090577 100644 --- a/js/quiz.accessibility.js +++ b/js/quiz.accessibility.js @@ -18,7 +18,9 @@ QuizAccessibility.prototype = { $('[aria-keyshortcuts="' + key + '"]').each(function () { if ($this.quiz.utils.isEnabled($(this))) { - $(this).get(0).click(); + $(this).get(0).click(function(e) { + return false; + }); return true; } });