HTML output cells are now styled with the rendered_html class.

This commit is contained in:
Brian E. Granger 2011-08-13 15:55:58 -07:00
parent c72b41883f
commit 058c0b4767

View File

@ -252,7 +252,7 @@ var IPython = (function (IPython) {
CodeCell.prototype.append_html = function (html, element) {
element = element || this.element.find("div.output");
var toinsert = $("<div/>").addClass("output_html");
var toinsert = $("<div/>").addClass("output_html rendered_html");
toinsert.append(html);
element.append(toinsert);
return element;