get monospace pager back

This commit is contained in:
Matthias BUSSONNIER 2013-02-05 18:09:22 +01:00
parent 20071271bf
commit 2fbb909bb3

View File

@ -152,9 +152,7 @@ var IPython = (function (IPython) {
} }
Pager.prototype.append_text = function (text) { Pager.prototype.append_text = function (text) {
var toinsert = $("<div/>").addClass("output_area output_stream"); this.pager_element.append($('<pre/>').html(utils.fixCarriageReturn(utils.fixConsole(text))));
toinsert.append($('<pre/>').html(utils.fixCarriageReturn(utils.fixConsole(text))));
this.pager_element.append(toinsert);
}; };