diff --git a/rapids/templates/rapids/rapid_form.html b/rapids/templates/rapids/rapid_form.html index 163fc381..faf4fac7 100755 --- a/rapids/templates/rapids/rapid_form.html +++ b/rapids/templates/rapids/rapid_form.html @@ -56,6 +56,7 @@ var reader = new FileReader(); reader.onload = function (file) { + console.log("READ EXAMINIANS", file) var arrayBuffer = reader.result; // Here we have the file data as an ArrayBuffer. dicomParser requires as input a // Uint8Array so we create that here @@ -188,9 +189,11 @@ function ifNormal() { if (document.getElementById("id_normal").checked) { $("#answer_form_set textarea").attr("required", false) + $('#answer_empty_form textarea').attr("required", false) normal = true; } else { $("#answer_form_set textarea").attr("required", true) + $('#answer_empty_form textarea').attr("required", true) normal = false; } }