updating text reader - wip

This commit is contained in:
2026-03-09 23:27:03 -07:00
parent 9c6438d10e
commit 3da850325e
7 changed files with 2075 additions and 8 deletions

8
app.js
View File

@@ -10,6 +10,7 @@ const { ensureIChingSection } = window.IChingSectionUi || {};
const { ensureKabbalahSection } = window.KabbalahSectionUi || {};
const { ensureCubeSection } = window.CubeSectionUi || {};
const { ensureAlphabetSection } = window.AlphabetSectionUi || {};
const { ensureAlphabetTextSection } = window.AlphabetTextUi || {};
const { ensureZodiacSection } = window.ZodiacSectionUi || {};
const { ensureQuizSection } = window.QuizSectionUi || {};
const { ensureGodsSection } = window.GodsSectionUi || {};
@@ -46,6 +47,7 @@ const kabbalahTreeSectionEl = document.getElementById("kabbalah-tree-section");
const cubeSectionEl = document.getElementById("cube-section");
const alphabetSectionEl = document.getElementById("alphabet-section");
const alphabetLettersSectionEl = document.getElementById("alphabet-letters-section");
const alphabetTextSectionEl = document.getElementById("alphabet-text-section");
const numbersSectionEl = document.getElementById("numbers-section");
const zodiacSectionEl = document.getElementById("zodiac-section");
const quizSectionEl = document.getElementById("quiz-section");
@@ -67,6 +69,7 @@ const openKabbalahTreeEl = document.getElementById("open-kabbalah-tree");
const openKabbalahCubeEl = document.getElementById("open-kabbalah-cube");
const openAlphabetEl = document.getElementById("open-alphabet");
const openAlphabetLettersEl = document.getElementById("open-alphabet-letters");
const openAlphabetTextEl = document.getElementById("open-alphabet-text");
const openNumbersEl = document.getElementById("open-numbers");
const openZodiacEl = document.getElementById("open-zodiac");
const openNatalEl = document.getElementById("open-natal");
@@ -407,6 +410,7 @@ sectionStateUi.init?.({
cubeSectionEl,
alphabetSectionEl,
alphabetLettersSectionEl,
alphabetTextSectionEl,
numbersSectionEl,
zodiacSectionEl,
quizSectionEl,
@@ -428,6 +432,7 @@ sectionStateUi.init?.({
openKabbalahCubeEl,
openAlphabetEl,
openAlphabetLettersEl,
openAlphabetTextEl,
openNumbersEl,
openZodiacEl,
openNatalEl,
@@ -444,6 +449,7 @@ sectionStateUi.init?.({
ensureKabbalahSection,
ensureCubeSection,
ensureAlphabetSection,
ensureAlphabetTextSection,
ensureZodiacSection,
ensureQuizSection,
ensureGodsSection,
@@ -521,6 +527,7 @@ navigationUi.init?.({
openKabbalahCubeEl,
openAlphabetEl,
openAlphabetLettersEl,
openAlphabetTextEl,
openNumbersEl,
openZodiacEl,
openNatalEl,
@@ -537,6 +544,7 @@ navigationUi.init?.({
ensureKabbalahSection,
ensureCubeSection,
ensureAlphabetSection,
ensureAlphabetTextSection,
ensureZodiacSection,
ensureGodsSection,
ensureCalendarSection