paged data added

This commit is contained in:
TreetopFlyer 2021-03-26 17:24:50 -04:00
parent bba844ed96
commit ec91e815c6
4 changed files with 5 additions and 5 deletions

1
data-1.csv Normal file

File diff suppressed because one or more lines are too long

1
data-2.csv Normal file

File diff suppressed because one or more lines are too long

1
data-3.csv Normal file

File diff suppressed because one or more lines are too long

View File

@ -487,13 +487,13 @@ var App = {
},
Load:(file)=>
{
let structTopics = App.LeafStructure(App.State.Topics);
let structBible = App.LeafStructure(App.State.Bible);
fetch(file)
.then(inAccept=>inAccept.text())
.then(inAccept=>
{
let structTopics = App.LeafStructure(App.State.Topics);
let structBible = App.LeafStructure(App.State.Bible);
let itrUp = inLeaf=>
{
@ -538,7 +538,6 @@ var App = {
App.State.Items.All[Math.floor(i/4)] = output;
}
Object.values(structTopics).forEach(itrUp);
Object.values(structBible).forEach(itrUp);
@ -547,8 +546,6 @@ var App = {
{
App.ApplyFilters();
App.Render();
console.log(structBible);
});