JS updates and expand HC

This commit is contained in:
Ryan Prather 2024-11-18 00:24:05 -05:00
parent cb849308cc
commit 979443da36
3 changed files with 256 additions and 7 deletions

View File

@ -1333,8 +1333,237 @@
37 37
], ],
"hc": [ "hc": [
1, [
52 1,
2
],
[
3,
4,
5
],
[
6,
7,
8
],
[
9,
10,
11
],
[
12,
13,
14,
15
],
[
16,
17,
18,
19
],
[
20,
21,
22,
23
],
[
24,
25,
26
],
[
27,
28
],
[
29,
30
],
[
31,
32
],
[
33,
34
],
[
35,
36
],
[
37,
38,
39
],
[
40,
41,
42,
43,
44
],
[
45
],
[
46,
47,
48,
49
],
[
50,
51,
52
],
[
53
],
[
54,
55,
56
],
[
57,
58
],
[
59,
60,
61
],
[
62,
63,
64
],
[
65,
66,
67,
68
],
[
69,
70,
71
],
[
72,
73,
74
],
[
75,
76,
77
],
[
78,
79
],
[
80,
81,
82
],
[
83,
84,
85
],
[
86,
87
],
[
88,
89,
90,
91
],
[
92,
93,
94,
95
],
[
96,
97,
98
],
[
99,
100
],
[
101,
102
],
[
103
],
[
104
],
[
105,
106,
107
],
[
108,
109
],
[
110,
111
],
[
112
],
[
113,
114,
115
],
[
116,
117,
118,
119
],
[
120,
121
],
[
122
],
[
123
],
[
124
],
[
125
],
[
126
],
[
127,
128,
129
]
], ],
"cd": [ "cd": [
"1", "1",

View File

@ -98,13 +98,13 @@ function setHeight() {
tabs.style.height = (window.innerHeight - 13) + 'px'; tabs.style.height = (window.innerHeight - 13) + 'px';
ref = document.querySelector('.ref'); ref = document.querySelector('.ref');
ref.style.height = (window.innerHeight - 50) + 'px'; ref.style.height = (window.innerHeight - 60) + 'px';
noteList = document.querySelector('#note-list'); noteList = document.querySelector('#note-list');
noteList.style.height = (window.innerHeight - 50) + 'px'; noteList.style.height = (window.innerHeight - 60) + 'px';
notes = document.querySelector('.notes'); notes = document.querySelector('.notes');
notes.style.height = (window.innerHeight - 50) + 'px'; notes.style.height = (window.innerHeight - 60) + 'px';
notePreview = document.querySelector('#notePreview'); notePreview = document.querySelector('#notePreview');
notePreview.style.height = (window.innerHeight - 50) + 'px'; notePreview.style.height = (window.innerHeight - 50) + 'px';
@ -437,7 +437,6 @@ function saveSpeaker(event) {
/** /**
* A description of the entire function. * A description of the entire function.
*
*/ */
function newSeries() { function newSeries() {
if (document.querySelector('#series').value == 'new') { if (document.querySelector('#series').value == 'new') {
@ -739,6 +738,27 @@ function retrieveBooks() {
newBook.text = BOOKS.cd[x]; newBook.text = BOOKS.cd[x];
bookList.appendChild(newBook); bookList.appendChild(newBook);
} }
} else if (selectedType == 'hc') {
var none = document.createElement("option");
none.value = '';
none.text = '-- Select --';
bookList.appendChild(none);
for (var x in BOOKS[selectedType]) {
var newBook = document.createElement("optgroup");
newBook.label = "Lord's Day " + (parseInt(x) + 1)
var ld = document.createElement("option");
ld.value = parseInt(x) + 1;
ld.text = "LD " + (parseInt(x) + 1) + " All";
newBook.appendChild(ld);
for (var y in BOOKS[selectedType][x]) {
var question = document.createElement("option");
question.value = y;
question.text = "HC" + BOOKS[selectedType][x][y];
newBook.appendChild(question);
}
bookList.appendChild(newBook);
}
} else if (selectedType == 'note') { } else if (selectedType == 'note') {
var none = document.createElement("option"); var none = document.createElement("option");
none.value = ''; none.value = '';

File diff suppressed because one or more lines are too long