Fix erroneous invocation of static methods

This commit is contained in:
Florine W. Dekker 2020-01-04 00:12:27 +01:00
parent 92b1d30409
commit 56cd54f42f
Signed by: FWDekker
GPG Key ID: B1B567AF58D6EE0F
1 changed files with 2 additions and 2 deletions

View File

@ -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;
});
}