Przeglądaj źródła

Remove console logs

Steven Silvester 8 lat temu
rodzic
commit
2395762d05
1 zmienionych plików z 0 dodań i 2 usunięć
  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) {