From 2fbb909bb3d5e30c17a37c895b70c8ceeefec6cb Mon Sep 17 00:00:00 2001 From: Matthias BUSSONNIER Date: Tue, 5 Feb 2013 18:09:22 +0100 Subject: [PATCH] get monospace pager back --- IPython/frontend/html/notebook/static/js/pager.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/IPython/frontend/html/notebook/static/js/pager.js b/IPython/frontend/html/notebook/static/js/pager.js index 54e752936..1b0e07604 100644 --- a/IPython/frontend/html/notebook/static/js/pager.js +++ b/IPython/frontend/html/notebook/static/js/pager.js @@ -152,9 +152,7 @@ var IPython = (function (IPython) { } Pager.prototype.append_text = function (text) { - var toinsert = $("
").addClass("output_area output_stream"); - toinsert.append($('
').html(utils.fixCarriageReturn(utils.fixConsole(text))));
-        this.pager_element.append(toinsert);
+        this.pager_element.append($('
').html(utils.fixCarriageReturn(utils.fixConsole(text))));
     };