Show More
@@ -607,7 +607,6 b' var IPython = (function (IPython) {' | |||||
607 |
|
607 | |||
608 |
|
608 | |||
609 | Notebook.prototype.cut_cell = function () { |
|
609 | Notebook.prototype.cut_cell = function () { | |
610 | console.log('cut_cell'); |
|
|||
611 | this.copy_cell(); |
|
610 | this.copy_cell(); | |
612 | this.delete_cell(); |
|
611 | this.delete_cell(); | |
613 | } |
|
612 | } | |
@@ -620,7 +619,6 b' var IPython = (function (IPython) {' | |||||
620 |
|
619 | |||
621 |
|
620 | |||
622 | Notebook.prototype.paste_cell = function () { |
|
621 | Notebook.prototype.paste_cell = function () { | |
623 | console.log('paste_cell'); |
|
|||
624 | if (this.clipboard !== null && this.paste_enabled) { |
|
622 | if (this.clipboard !== null && this.paste_enabled) { | |
625 | var cell_data = this.clipboard; |
|
623 | var cell_data = this.clipboard; | |
626 | if (cell_data.cell_type == 'code') { |
|
624 | if (cell_data.cell_type == 'code') { |
General Comments 0
You need to be logged in to leave comments.
Login now