remove extraneous fields
This commit is contained in:
parent
6330ffa1a8
commit
a06e420f24
@ -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;
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user