mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-04 04:39:03 +00:00
Update client.mjs
Removed the depth variable that is no longer needed.
This commit is contained in:
parent
f7fdb38c8c
commit
5ceec8eabf
@ -43,14 +43,12 @@ export default async function ({ web, components }, db) {
|
||||
$headingList.style.display = '';
|
||||
const $headerBlocks = $page.querySelectorAll('[class^="notion-"][class*="header-block"]'),
|
||||
$fragment = web.html`<div></div>`;
|
||||
let depth = 0,
|
||||
indent = 0;
|
||||
let indent = 0;
|
||||
for (const $header of $headerBlocks) {
|
||||
const id = $header.dataset.blockId.replace(/-/g, ''),
|
||||
placeholder = $header.querySelector('[placeholder]').getAttribute('placeholder'),
|
||||
headerDepth = +[...placeholder].reverse()[0];
|
||||
indent = (headerDepth-1) * 18;
|
||||
depth = headerDepth;
|
||||
const $outlineHeader = web.render(
|
||||
web.html`<a href="#${id}" class="outliner--header"
|
||||
placeholder="${web.escape(placeholder)}"
|
||||
|
Loading…
Reference in New Issue
Block a user