From c41fe67da2ae906f82889345ad1aecbf1d1c04aa Mon Sep 17 00:00:00 2001 From: Jonathan Frederic Date: Fri, 28 Feb 2014 15:22:30 -0800 Subject: [PATCH] Re-added removed refresh --- IPython/html/static/notebook/js/cell.js | 1 + 1 file changed, 1 insertion(+) diff --git a/IPython/html/static/notebook/js/cell.js b/IPython/html/static/notebook/js/cell.js index d76c697b1..ffe72cc89 100644 --- a/IPython/html/static/notebook/js/cell.js +++ b/IPython/html/static/notebook/js/cell.js @@ -288,6 +288,7 @@ var IPython = (function (IPython) { * @method focus_editor */ Cell.prototype.focus_editor = function () { + this.refresh(); this.code_mirror.focus(); };