From: Vincent Vanwaelscappel Date: Thu, 12 Oct 2023 13:43:57 +0000 (+0200) Subject: wait #6340 @0.25 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=ee6494d6c9bac0562a2bfb58d9ec17d7cb43e477;p=fluidbook-toolbox-quiz.git wait #6340 @0.25 --- diff --git a/js/quiz.js b/js/quiz.js index 3806ae8..5cfdcdd 100644 --- a/js/quiz.js +++ b/js/quiz.js @@ -43,13 +43,16 @@ Quiz.prototype = { this.match = new QuizMatch(this); this.attemptsLog = new QuizAttemptsLog(this); this.countriesList = new QuizCountriesList(this); - this.scorm = new QuizScorm(this); }, initQuiz: function (state) { const $this = this; + $(window).on('submit', 'form', function () { + return false; + }); + // La fonction resize est appelée à chaque fois qu'un resize de la fenêtre survient (et à l'init de l'app) $(window).on('resize', function () { $this.quizResize();