From 613dbf80494fa1aa414ff1851770e8486a03d4f1 2014-02-27 23:45:06 From: Jonathan Frederic Date: 2014-02-27 23:45:06 Subject: [PATCH] Removed change that is no longer needed --- diff --git a/IPython/html/static/notebook/js/notebook.js b/IPython/html/static/notebook/js/notebook.js index 3e96265..96abcde 100644 --- a/IPython/html/static/notebook/js/notebook.js +++ b/IPython/html/static/notebook/js/notebook.js @@ -457,8 +457,7 @@ var IPython = (function (IPython) { if (this.is_valid_cell_index(index)) { var sindex = this.get_selected_index(); if (sindex !== null && index !== sindex) { - // Put the cell in command mode and unselect it. - this.get_cell(sindex).command_mode(); + this.command_mode(); this.get_cell(sindex).unselect(); } var cell = this.get_cell(index);