This commit is contained in:
Ross
2021-11-29 21:22:25 +00:00
parent 1e502664ae
commit b1a024953a
+1 -1
View File
@@ -90,6 +90,7 @@
$(document).on('submit', '#series_finding_form', function (e) { $(document).on('submit', '#series_finding_form', function (e) {
dicom_element = $(".single-dicom-viewer").get(0); dicom_element = $(".single-dicom-viewer").get(0);
c = cornerstone.getEnabledElement(dicom_element); c = cornerstone.getEnabledElement(dicom_element);
e.preventDefault();
$.ajax({ $.ajax({
type: 'POST', type: 'POST',
@@ -112,6 +113,5 @@
.responseText); // provide a bit more info about the error to the console .responseText); // provide a bit more info about the error to the console
} }
}); });
e.preventDefault();
}); });
</script> </script>