##// END OF EJS Templates
s/trigger_edit_mode/edit_mode
Jonathan Frederic -
Show More
@@ -167,7 +167,7 b' var IPython = (function (IPython) {'
167 167 event.preventDefault();
168 168 IPython.notebook.command_mode();
169 169 IPython.notebook.select_prev();
170 IPython.notebook.trigger_edit_mode();
170 IPython.notebook.edit_mode();
171 171 return false;
172 172 }
173 173 }
@@ -181,7 +181,7 b' var IPython = (function (IPython) {'
181 181 event.preventDefault();
182 182 IPython.notebook.command_mode();
183 183 IPython.notebook.select_next();
184 IPython.notebook.trigger_edit_mode();
184 IPython.notebook.edit_mode();
185 185 return false;
186 186 }
187 187 }
@@ -253,7 +253,7 b' var IPython = (function (IPython) {'
253 253 help : 'edit mode',
254 254 help_index : 'aa',
255 255 handler : function (event) {
256 IPython.notebook.trigger_edit_mode();
256 IPython.notebook.edit_mode();
257 257 return false;
258 258 }
259 259 },
@@ -564,11 +564,11 b' var IPython = (function (IPython) {'
564 564 /**
565 565 * Make a cell enter edit mode.
566 566 *
567 * @method trigger_edit_mode
567 * @method edit_mode
568 568 * @param [index] {int} Cell index to select. If no index is provided,
569 569 * the current selected cell is used.
570 570 **/
571 Notebook.prototype.trigger_edit_mode = function (index) {
571 Notebook.prototype.edit_mode = function (index) {
572 572 if (index===undefined) {
573 573 index = this.get_selected_index();
574 574 }
@@ -1468,14 +1468,14 b' var IPython = (function (IPython) {'
1468 1468 // If we are at the end always insert a new cell and return
1469 1469 if (cell_index === (this.ncells()-1)) {
1470 1470 this.insert_cell_below('code');
1471 this.trigger_edit_mode(cell_index+1);
1471 this.edit_mode(cell_index+1);
1472 1472 this.scroll_to_bottom();
1473 1473 this.set_dirty(true);
1474 1474 return;
1475 1475 }
1476 1476
1477 1477 this.insert_cell_below('code');
1478 this.trigger_edit_mode(cell_index+1);
1478 this.edit_mode(cell_index+1);
1479 1479 this.set_dirty(true);
1480 1480 };
1481 1481
@@ -1494,7 +1494,7 b' var IPython = (function (IPython) {'
1494 1494 // If we are at the end always insert a new cell and return
1495 1495 if (cell_index === (this.ncells()-1)) {
1496 1496 this.insert_cell_below('code');
1497 this.trigger_edit_mode(cell_index+1);
1497 this.edit_mode(cell_index+1);
1498 1498 this.scroll_to_bottom();
1499 1499 this.set_dirty(true);
1500 1500 return;
@@ -1969,7 +1969,7 b' var IPython = (function (IPython) {'
1969 1969 this.fromJSON(data);
1970 1970 if (this.ncells() === 0) {
1971 1971 this.insert_cell_below('code');
1972 this.trigger_edit_mode(0);
1972 this.edit_mode(0);
1973 1973 } else {
1974 1974 this.select(0);
1975 1975 this.command_mode();
General Comments 0
You need to be logged in to leave comments. Login now