anagram and dictionary added

This commit is contained in:
2026-03-09 14:43:03 -07:00
parent 32002c7770
commit 9c6438d10e
5 changed files with 202 additions and 30 deletions

View File

@@ -52,7 +52,7 @@
let tabAll, tabHebrew, tabGreek, tabEnglish, tabArabic, tabEnochian;
let searchInputEl, searchClearEl, typeFilterEl;
let gematriaCipherEl, gematriaInputEl, gematriaResultEl, gematriaBreakdownEl;
let gematriaReverseEl, gematriaMatchesEl, gematriaInputLabelEl, gematriaCipherLabelEl;
let gematriaModeEls, gematriaMatchesEl, gematriaInputLabelEl, gematriaCipherLabelEl;
function getElements() {
listEl = document.getElementById("alpha-letter-list");
@@ -73,7 +73,7 @@
gematriaInputEl = document.getElementById("alpha-gematria-input");
gematriaResultEl = document.getElementById("alpha-gematria-result");
gematriaBreakdownEl = document.getElementById("alpha-gematria-breakdown");
gematriaReverseEl = document.getElementById("alpha-gematria-reverse");
gematriaModeEls = Array.from(document.querySelectorAll("input[name='alpha-tool-mode']"));
gematriaMatchesEl = document.getElementById("alpha-gematria-matches");
gematriaInputLabelEl = document.getElementById("alpha-gematria-input-label");
gematriaCipherLabelEl = document.getElementById("alpha-gematria-cipher-label");
@@ -86,7 +86,7 @@
inputEl: gematriaInputEl,
resultEl: gematriaResultEl,
breakdownEl: gematriaBreakdownEl,
modeToggleEl: gematriaReverseEl,
modeEls: gematriaModeEls,
matchesEl: gematriaMatchesEl,
inputLabelEl: gematriaInputLabelEl,
cipherLabelEl: gematriaCipherLabelEl