From c99d59698927fddff7f896fc62a7e6b001f7be5e Mon Sep 17 00:00:00 2001 From: "Felix W. Dekker" Date: Sun, 5 Apr 2020 13:49:36 +0200 Subject: [PATCH] Remove base64 character set label --- index.html | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/index.html b/index.html index 5816704..78fc9be 100644 --- a/index.html +++ b/index.html @@ -55,7 +55,7 @@ MIT License. Source code available on git. -
v1.4.5
+
v1.4.6
@@ -211,11 +211,6 @@ constructor(name) { super(name, new Base64NumeralSystem(Base64NumeralSystem.defaultAlphabet())); - this.dropdownLabel = document.createElement("label"); - this.dropdownLabel.setAttribute("for", `${this.name}Dropdown`); - this.dropdownLabel.innerHTML = "Character set"; - this.dropdownLabel.classList.add("label-inline"); - this.dropdown = document.createElement("select"); this.dropdown.id = `${this.name}Dropdown`; this.dropdown.onchange = () => { @@ -247,7 +242,6 @@ } addToParent(parent) { - this.dropdownDiv.appendChild(this.dropdownLabel); this.options.forEach(option => this.dropdown.appendChild(option)); this.dropdownDiv.appendChild(this.dropdown); parent.appendChild(this.dropdownDiv);