From 49165a1f561410d0d29533d34c0eb1b10b801551 Mon Sep 17 00:00:00 2001 From: eclipse Date: Sat, 24 May 2025 08:53:53 +0200 Subject: [PATCH] minor change --- the_works/static/the_works.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/the_works/static/the_works.js b/the_works/static/the_works.js index 44796b5..89eb006 100644 --- a/the_works/static/the_works.js +++ b/the_works/static/the_works.js @@ -120,7 +120,7 @@ console.log("everything has been filtered out") } } -// event handler for dropdown checkboxes; called whenever checkbox is checked or unchecked +// event handler for dropdown checkboxes; called whenever a checkbox is checked or unchecked function updateDropdownSelected(that, summary) { if ( that.checked ) { // add badge when checkbox was checked @@ -269,7 +269,6 @@ function validate_date(tag_id="form_Erscheinungstag", monat_id="form_Erscheinung t.setAttribute("aria-invalid", "false"); m.setCustomValidity(""); m.setAttribute("aria-invalid", "false"); - console.log("This is function validate_date(): tag/monat/jahr is " + t.value + "/" + m.value + "/" + j.value); //DEBUG if ( t.value != "" ) { if ( j.value == "" || m.value == "" ) { t.setCustomValidity("wenn der Tag angegeben ist, müssen Monat und Jahr ebenfalls angegeben sein");