From 02f14633f2643524daaacc34456162cc85e3ad88 Mon Sep 17 00:00:00 2001 From: Patrice Hardouin <patrice.hardouin@ac-normandie.fr> Date: Wed, 27 Nov 2024 22:01:46 +0000 Subject: [PATCH] =?UTF-8?q?correction=20erreur=20de=20calcul=20des=20r?= =?UTF-8?q?=C3=A9sultats=20lorsque=20aucune=20r=C3=A9ponse=20n'est=20donn?= =?UTF-8?q?=C3=A9e=20pour=20justifier=20la=20probabilit=C3=A9=20que=20cela?= =?UTF-8?q?=20soit=20dominant=20ou=20r=C3=A9cessif?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/hunting.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/hunting.html b/public/hunting.html index 9a87826..ca5760c 100644 --- a/public/hunting.html +++ b/public/hunting.html @@ -23,6 +23,11 @@ if (document.forms[0].Sur.selectedIndex == 2) { score++; } else {txt = txt + " 2";} +if (document.forms[0].Indiv.value.trim() === "" || document.forms[0].Indiv.value.trim() === "III4") { + score++; +} else { + txt = txt + " 6"; +} if (document.forms[0].AutGon.selectedIndex == 1) {score++;} else {txt = txt + " 3";} if (document.forms[0].Genotype.value == "(n//n)") {score++;} -- GitLab