.
This commit is contained in:
@@ -56,6 +56,7 @@
|
|||||||
|
|
||||||
var reader = new FileReader();
|
var reader = new FileReader();
|
||||||
reader.onload = function (file) {
|
reader.onload = function (file) {
|
||||||
|
console.log("READ EXAMINIANS", file)
|
||||||
var arrayBuffer = reader.result;
|
var arrayBuffer = reader.result;
|
||||||
// Here we have the file data as an ArrayBuffer. dicomParser requires as input a
|
// Here we have the file data as an ArrayBuffer. dicomParser requires as input a
|
||||||
// Uint8Array so we create that here
|
// Uint8Array so we create that here
|
||||||
@@ -188,9 +189,11 @@
|
|||||||
function ifNormal() {
|
function ifNormal() {
|
||||||
if (document.getElementById("id_normal").checked) {
|
if (document.getElementById("id_normal").checked) {
|
||||||
$("#answer_form_set textarea").attr("required", false)
|
$("#answer_form_set textarea").attr("required", false)
|
||||||
|
$('#answer_empty_form textarea').attr("required", false)
|
||||||
normal = true;
|
normal = true;
|
||||||
} else {
|
} else {
|
||||||
$("#answer_form_set textarea").attr("required", true)
|
$("#answer_form_set textarea").attr("required", true)
|
||||||
|
$('#answer_empty_form textarea').attr("required", true)
|
||||||
normal = false;
|
normal = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user