I changed my own comments to get rid of this warning which I could have better written in the first place.

This commit is contained in:
Jascha Urbach 2023-10-14 17:21:15 +02:00
parent 16b7db4639
commit 97adf2f7fd
No known key found for this signature in database
GPG key ID: A43A844B114F9B08

View file

@ -47,12 +47,11 @@
.querySelectorAll("[data-remove]")
.forEach((node) => node.addEventListener("click", removeInput));
// Get the element, add a keypress listener...
// Get element, add a keypress listener...
document.getElementById("subjects").addEventListener("keypress", function (e) {
// e.target is the element where it listens!
// if e.target is input field within the "subjects" div, do stuff
// Linstening to element e.target
// If e.target is an input field within "subjects" div preventDefault()
if (e.target && e.target.nodeName == "INPUT") {
// Item found, prevent default
if (event.keyCode == 13) {
event.preventDefault();
}