##// END OF EJS Templates
Merge pull request #4974 from ivanov/better-paste...
Brian E. Granger -
r15067:6acbd122 merge
parent child Browse files
Show More
@@ -1040,6 +1040,7 b' var IPython = (function (IPython) {'
1040 var cell_data = this.clipboard;
1040 var cell_data = this.clipboard;
1041 var new_cell = this.insert_cell_above(cell_data.cell_type);
1041 var new_cell = this.insert_cell_above(cell_data.cell_type);
1042 new_cell.fromJSON(cell_data);
1042 new_cell.fromJSON(cell_data);
1043 new_cell.focus_cell();
1043 };
1044 };
1044 };
1045 };
1045
1046
@@ -1053,6 +1054,7 b' var IPython = (function (IPython) {'
1053 var cell_data = this.clipboard;
1054 var cell_data = this.clipboard;
1054 var new_cell = this.insert_cell_below(cell_data.cell_type);
1055 var new_cell = this.insert_cell_below(cell_data.cell_type);
1055 new_cell.fromJSON(cell_data);
1056 new_cell.fromJSON(cell_data);
1057 new_cell.focus_cell();
1056 };
1058 };
1057 };
1059 };
1058
1060
General Comments 0
You need to be logged in to leave comments. Login now