瀏覽代碼

Remove console logs

Steven Silvester 8 年之前
父節點
當前提交
2395762d05
共有 1 個文件被更改,包括 0 次插入2 次删除
  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) {