WIP: [Electron Demo] - Updating UX | Visual Design of the Demo. #38

Draft
syntaxbullet wants to merge 14 commits from syntaxbullet/docs.sheetjs.com:master into master
Showing only changes of commit 4ff62b8032 - Show all commits

@ -45,10 +45,9 @@ function renderWorkbookToTables(wb) {
const sheetNames = wb.SheetNames;
sheetNames.forEach((sheetName) => {
const sheet = wb.Sheets[sheetName];
const sheetname = sheetName;
const table = XLSX.utils.sheet_to_html(sheet);
htmlout.innerHTML += `<details class="sheetjs-sheet-container">
<summary class="sheetjs-sheet-name">${sheetname}</summary>
<summary class="sheetjs-sheet-name">${sheetName}</summary>
<div class="sheetjs-tab-content">${table}</div>
</details>`;
});