let review = $this.sendUserAnswers();
// Si la revue instantanée est activée, on affiche les résultats
if ($this.quiz.data.instantReview && !['country', 'email', 'text'].includes($this.getActiveScreenType())) {
- $this.activeScreen.find(".screen a").attr('tabindex','-1')
$this.instantReview(review);
} else {
// Sinon, on passe directement à la question suivante
$this.nextQuestion();
}
+ $this.quiz.accessibility.setTabindex(-1)
+ $this.activeScreen.find(".screen a").attr('tabindex','-1')
} else {
// Bouton continuer, on était dans la revue instantanée, on passe à la question suivante
$this.quiz.animations.stopInstantReviewAnimation();