File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff line change @@ -366,13 +366,11 @@ let inEdit = true;
366366editButton . onclick = ( ) => {
367367 inEdit = true ;
368368 editArea ( ) ;
369- console . log ( inEdit ) ;
370369} ;
371370executeButton . onclick = ( ) => {
372371 if ( system . isReady ( ) ) {
373372 executeArea ( ) ;
374373 inEdit = false ;
375- console . log ( inEdit ) ;
376374 }
377375} ;
378376let 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 ;
You can’t perform that action at this time.
0 commit comments