From 6549bf4df2bc98869c78469e5d768f0566868a60 2014-03-05 22:34:04 From: Fernando Perez Date: 2014-03-05 22:34:04 Subject: [PATCH] Merge pull request #5281 from minrk/rebase-typo fix a typo introduced by a rebased PR, that was causing heading cells to be displayed in both input and rendered forms. --- diff --git a/IPython/html/static/notebook/js/textcell.js b/IPython/html/static/notebook/js/textcell.js index 70b6346..4eab761 100644 --- a/IPython/html/static/notebook/js/textcell.js +++ b/IPython/html/static/notebook/js/textcell.js @@ -531,7 +531,7 @@ var IPython = (function (IPython) { .text('ΒΆ') ); this.set_rendered(h); - this.element.find('div.text_cell_input').hide(); + this.element.find('div.input_area').hide(); this.element.find("div.text_cell_render").show(); this.typeset(); }