diff --git a/mods/outliner/mod.js b/mods/outliner/mod.js index 87b28af..094b362 100644 --- a/mods/outliner/mod.js +++ b/mods/outliner/mod.js @@ -14,7 +14,7 @@ module.exports = { tags: ['extension', 'panel'], name: 'outliner', desc: 'table of contents.', - version: '1.2.0', + version: '1.2.1', author: 'CloudHill', options: [ { @@ -35,6 +35,6 @@ module.exports = { name: "Outline", icon: "icon.svg", js: "panel.js", - fullHeight: store('87e077cc-5402-451c-ac70-27cc4ae65546').fullHeight + fullHeight: store('87e077cc-5402-451c-ac70-27cc4ae65546').fullHeight, } }; diff --git a/mods/outliner/panel.js b/mods/outliner/panel.js index a6e1d66..5ae4442 100644 --- a/mods/outliner/panel.js +++ b/mods/outliner/panel.js @@ -82,15 +82,15 @@ module.exports = (store, __exports) => { const outline = document.querySelector('.outliner'); if (!outline) return; outline.textContent = ''; - if (store().lined) outline.setAttribute('lined', ''); - const pageContent = document.querySelector('.notion-page-content'); - const headerBlocks = pageContent.querySelectorAll('[class*="header-block"]'); - + const pageContent = document.querySelector('.notion-page-content'), + headerBlocks = pageContent.querySelectorAll('[class*="header-block"]'), + fragment = new DocumentFragment(); + headerBlocks.forEach(header => { - const blockId = header.dataset.blockId.replace(/-/g, ''); - const headerEl = header.querySelector('[placeholder]'); - const placeholder = headerEl.getAttribute('placeholder'); + const blockId = header.dataset.blockId.replace(/-/g, ''), + headerEl = header.querySelector('[placeholder]'), + placeholder = headerEl.getAttribute('placeholder'); const outlineHeader = createElement(`