fix linecount block

This commit is contained in:
2026-04-27 00:23:43 +02:00
parent d465b7f386
commit 65dd4388b1
-2
View File
@@ -33,7 +33,6 @@
hljs.highlightElement(code);
if (lineCount < 10000) {
const lines = code.innerHTML.split(/\r?\n/);
const fragment = [];
for (let i = 0; i < lines.length; i++) {
@@ -50,7 +49,6 @@
if (target) target.scrollIntoView();
}
});
}
document.addEventListener('keydown', (e) => {
if ((e.ctrlKey || e.metaKey) && e.key === 'a') {