From 64ae25508d93d53aff54a7e8722c8b82b7b5cd9d Mon Sep 17 00:00:00 2001 From: Jonathan Frederic Date: Wed, 26 Feb 2014 11:40:59 -0800 Subject: [PATCH] Removed change that is no longer needed --- IPython/html/static/notebook/js/notebook.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/IPython/html/static/notebook/js/notebook.js b/IPython/html/static/notebook/js/notebook.js index 3e9626537..96abcde84 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);