From 7d87978a66891852649264c3ac37b676995f5707 Mon Sep 17 00:00:00 2001 From: MinRK Date: Wed, 5 Mar 2014 14:30:34 -0800 Subject: [PATCH] fix a typo introduced by a rebased PR caused heading cells to appear in both rendered and unrendered state --- IPython/html/static/notebook/js/textcell.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPython/html/static/notebook/js/textcell.js b/IPython/html/static/notebook/js/textcell.js index 70b6346d5..4eab761dc 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(); }