##// END OF EJS Templates
HTML output cells are now styled with the rendered_html class.
Brian E. Granger -
Show More
@@ -252,7 +252,7 b' var IPython = (function (IPython) {'
252
252
253 CodeCell.prototype.append_html = function (html, element) {
253 CodeCell.prototype.append_html = function (html, element) {
254 element = element || this.element.find("div.output");
254 element = element || this.element.find("div.output");
255 var toinsert = $("<div/>").addClass("output_html");
255 var toinsert = $("<div/>").addClass("output_html rendered_html");
256 toinsert.append(html);
256 toinsert.append(html);
257 element.append(toinsert);
257 element.append(toinsert);
258 return element;
258 return element;
General Comments 0
You need to be logged in to leave comments. Login now