From 56cd54f42fcb70183cca058c04be9d55d4e2efc3 Mon Sep 17 00:00:00 2001 From: "Felix W. Dekker" Date: Sat, 4 Jan 2020 00:12:27 +0100 Subject: [PATCH] Fix erroneous invocation of static methods --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index c030ca6..b2aea04 100644 --- a/index.html +++ b/index.html @@ -157,10 +157,10 @@ this.dropdownDiv.classList.add("float-right"); this.options = - Object.keys(Base64NumeralSystemInput.dropdownOptions).map(key => { + Object.keys(Base64NumeralSystemInput.dropdownOptions()).map(key => { const option = document.createElement("option"); option.value = key; - option.text = key + ": " + Base64NumeralSystemInput.dropdownOptions[key].join(""); + option.text = key + ": " + Base64NumeralSystemInput.dropdownOptions()[key].join(""); return option; }); }