This commit is contained in:
Ross
2021-11-28 17:28:06 +00:00
parent 897cf3b044
commit 3026149a43
+4 -4
View File
@@ -48,12 +48,12 @@ This series is not associated with any cases.
<script>
$(document).ready(function (
$("#add-finding-button").click(() =>{
$(document).ready(function () {
$("#add-finding-button").click(() => {
$("#finding-form").clear().append(
$("#hidden-form form").clone();
$("#hidden-form form").clone()
);
});
));
});
</script>