##// END OF EJS Templates
remove warning for stripped output
MinRK -
Show More
@@ -496,12 +496,7 b' var IPython = (function (IPython) {'
496 if (type==='text/html' || type==='text/svg') {
496 if (type==='text/html' || type==='text/svg') {
497 value = IPython.security.sanitize_html(value);
497 value = IPython.security.sanitize_html(value);
498 } else {
498 } else {
499 // warn and don't display if we don't know how to sanitize it
499 // don't display if we don't know how to sanitize it
500 var content = {
501 text : "Untrusted " + type + " output ignored.",
502 stream : "stderr"
503 }
504 this.append_stream(content);
505 continue;
500 continue;
506 }
501 }
507 }
502 }
General Comments 0
You need to be logged in to leave comments. Login now