Skip to content

Commit 9d70d9c

Browse files
committed
rid of stupid logs
1 parent d69a127 commit 9d70d9c

2 files changed

Lines changed: 0 additions & 4 deletions

File tree

src/webpage/editor/editor.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ class Editor extends EventTarget {
8787
this.focusedLine = index;
8888
const linedown = Math.floor(this.scroll.linedown);
8989
if (index !== undefined) {
90-
console.log(index, linedown, this.height);
9190
if (index < linedown) {
9291
this.scroll.linedown = index;
9392
}

src/webpage/index.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -366,13 +366,11 @@ let inEdit = true;
366366
editButton.onclick = () => {
367367
inEdit = true;
368368
editArea();
369-
console.log(inEdit);
370369
};
371370
executeButton.onclick = () => {
372371
if (system.isReady()) {
373372
executeArea();
374373
inEdit = false;
375-
console.log(inEdit);
376374
}
377375
};
378376
let system = new Etab();
@@ -384,7 +382,6 @@ system.onLine = (line) => {
384382
editor.focusLine(undefined);
385383
}
386384
}
387-
console.log(inEdit);
388385
if (inEdit) {
389386
const editor = editors.find((editor) => editor.fileDir === line?.file);
390387
if (!editor) return;

0 commit comments

Comments
 (0)