Update client.mjs

Removed the depth variable that is no longer needed.
This commit is contained in:
Achiya Elyasaf 2023-11-26 20:38:26 +02:00 committed by GitHub
parent f7fdb38c8c
commit 5ceec8eabf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)}"