Quellcode durchsuchen

Remove console logs

Steven Silvester vor 8 Jahren
Ursprung
Commit
2395762d05
1 geänderte Dateien mit 0 neuen und 2 gelöschten Zeilen
  1. 0 2
      src/notebook/notebook/widget.ts

+ 0 - 2
src/notebook/notebook/widget.ts

@@ -809,7 +809,6 @@ class Notebook extends StaticNotebook {
     let activeCell = this.activeCell;
     // Ensure we have the correct focus.
     if (this._isActive) {
-      console.log(this.mode, activeCell);
       if (this.mode === 'edit' && activeCell) {
         activeCell.editor.activate();
       } else {
@@ -967,7 +966,6 @@ class Notebook extends StaticNotebook {
    */
   private _evtFocus(event: MouseEvent): void {
     this._isActive = true;
-    console.log(event);
     let target = event.target as HTMLElement;
     let i = this._findCell(target);
     if (i !== -1) {