2
0
mirror of https://github.com/jupyter/notebook.git synced 2025-01-24 12:05:22 +08:00

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) {
var toinsert = $("<div/>").addClass("output_area output_stream");
toinsert.append($('<pre/>').html(utils.fixCarriageReturn(utils.fixConsole(text))));
this.pager_element.append(toinsert);
this.pager_element.append($('<pre/>').html(utils.fixCarriageReturn(utils.fixConsole(text))));
};