From 5e2469095bf96aede43e1a8038fdfdc3c3b2006f 2012-01-19 17:47:05 From: Brian Granger Date: 2012-01-19 17:47:05 Subject: [PATCH] Removing left over console.logs. --- diff --git a/IPython/frontend/html/notebook/static/js/notebook.js b/IPython/frontend/html/notebook/static/js/notebook.js index 4f37669..e75f1c2 100644 --- a/IPython/frontend/html/notebook/static/js/notebook.js +++ b/IPython/frontend/html/notebook/static/js/notebook.js @@ -607,7 +607,6 @@ var IPython = (function (IPython) { Notebook.prototype.cut_cell = function () { - console.log('cut_cell'); this.copy_cell(); this.delete_cell(); } @@ -620,7 +619,6 @@ var IPython = (function (IPython) { Notebook.prototype.paste_cell = function () { - console.log('paste_cell'); if (this.clipboard !== null && this.paste_enabled) { var cell_data = this.clipboard; if (cell_data.cell_type == 'code') {