|
|
|
@ -31,13 +31,14 @@ async function init() { |
|
|
|
|
[...app.children].forEach(child => app.removeChild(child)) |
|
|
|
|
|
|
|
|
|
userdata.pages.forEach((e,i) => { |
|
|
|
|
pageAdd(e.type); |
|
|
|
|
pageNew(e.type); |
|
|
|
|
populate(i+1); |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function pageAdd(template) { |
|
|
|
|
pageNew(template); |
|
|
|
|
userdata.pages.push(emptyPages[template]); |
|
|
|
|
populate(app.children.length); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -46,7 +47,6 @@ function pageNew(template) { |
|
|
|
|
node.children[0].id = `Page-${app.children.length+1}`; |
|
|
|
|
app.appendChild(node); |
|
|
|
|
fixPageCount(); |
|
|
|
|
userdata.pages.push(emptyPages[template]) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function populate(pnum) { |
|
|
|
|