From 4524db449d03191dea98c92df69055c762d59ff7 Mon Sep 17 00:00:00 2001 From: soufiane Date: Wed, 22 May 2024 14:43:22 +0200 Subject: [PATCH] wip #6927 --- js/quiz.accessibility.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; } }); -- 2.39.5