nachschub

This commit is contained in:
Luke
2021-04-21 17:07:41 +00:00
parent 21dc2545b8
commit fd25fc4ade

View File

@@ -1,4 +1,4 @@
let content = document.getElementById('content'); let content = document.getElementById('content');
let heading = document.getElementById('heading'); let heading = document.getElementById('heading');
let description = document.getElementById('description'); let description = document.getElementById('description');
@@ -6,7 +6,7 @@ let description = document.getElementById('description');
let input = document.getElementById('input'); let input = document.getElementById('input');
let close = document.getElementById('close'); let close = document.getElementById('close');
fzunction setInputFieldType(value) { function setInputFieldType(value) {
if (input.type == value) return; if (input.type == value) return;
var field = document.createElement('input'); var field = document.createElement('input');
@@ -21,7 +21,6 @@ fzunction setInputFieldType(value) {
return field; return field;
} }
function setText(heading, description) { function setText(heading, description) {
setHeading(heading); setHeading(heading);
setDescription(description); setDescription(description);