remove extraneous fields

This commit is contained in:
iw0 2023-11-13 20:31:14 +01:00
parent 6330ffa1a8
commit a06e420f24

View File

@ -1,8 +1,6 @@
"use strict"; "use strict";
// Put all the javascript code here, that you want to execute after page load. // Put all the javascript code here, that you want to execute after page load.
let bcFilled = false;
let bdayFilled = false;
let currentStage; let currentStage;
function executeStage(node) { function executeStage(node) {
@ -77,7 +75,6 @@ function fillBday(birthdayInput) {
if (bDay !== null && bDay !== "") { if (bDay !== null && bDay !== "") {
birthdayInput.value = bDay; birthdayInput.value = bDay;
birthdayInput.dispatchEvent(new Event('input', { bubbles: true })); birthdayInput.dispatchEvent(new Event('input', { bubbles: true }));
bdayFilled = true;
return true; return true;
} }
}) })