updated tarot frame for mobile and desktop usability

This commit is contained in:
2026-04-13 14:28:03 -07:00
parent 7149bbfa7f
commit 4872e814c9
6 changed files with 1217 additions and 102 deletions
+6 -1
View File
@@ -53,6 +53,7 @@
let searchInputEl, searchClearEl, typeFilterEl;
let gematriaCipherEl, gematriaInputEl, gematriaResultEl, gematriaBreakdownEl;
let gematriaModeEls, gematriaMatchesEl, gematriaInputLabelEl, gematriaCipherLabelEl;
let gematriaReverseCiphersEl, gematriaReverseCipherHintEl;
function getElements() {
listEl = document.getElementById("alpha-letter-list");
@@ -77,6 +78,8 @@
gematriaMatchesEl = document.getElementById("alpha-gematria-matches");
gematriaInputLabelEl = document.getElementById("alpha-gematria-input-label");
gematriaCipherLabelEl = document.getElementById("alpha-gematria-cipher-label");
gematriaReverseCiphersEl = document.getElementById("alpha-gematria-reverse-ciphers");
gematriaReverseCipherHintEl = document.getElementById("alpha-gematria-reverse-cipher-hint");
}
function getGematriaElements() {
@@ -89,7 +92,9 @@
modeEls: gematriaModeEls,
matchesEl: gematriaMatchesEl,
inputLabelEl: gematriaInputLabelEl,
cipherLabelEl: gematriaCipherLabelEl
cipherLabelEl: gematriaCipherLabelEl,
reverseCiphersEl: gematriaReverseCiphersEl,
reverseCipherHintEl: gematriaReverseCipherHintEl
};
}