Fix kontrola, zda orgové vyplnili problém u hodnocení

This commit is contained in:
Jonas Havelka 2021-11-15 22:45:45 +01:00
parent 33ce4a5db5
commit c0f5f68b8a

View file

@ -134,6 +134,15 @@ $(document).ready(function(){
return false;
}
}
function problem_is_empty(elem, index, array) {return elem.firstElementChild.children.length !== 1 && elem.firstElementChild.children[1].textContent === "";}
if ($('.hodnoceni').toArray().some(problem_is_empty)) {
alert("Neuloženo! Nezadal jsi problém, ke kterému posíláš hodnocení. Pokud je toto hodnocení navíc, smaž ho prosím křížkem a znovu odešli.")
event.preventDefault()
return false;
}
return true;
}
</script>