Make mime bundle accessible to renderers

pull/2286/head
Grant Nestor 9 years ago
parent 080028424a
commit d635525aef

@ -324,6 +324,10 @@ define([
console.log("unrecognized output type: " + json.output_type);
this.append_unrecognized(json);
}
if (record_output) {
this.outputs.push(json);
}
if (json.output_type === 'display_data') {
var that = this;
@ -331,10 +335,6 @@ define([
} else {
this.handle_appended();
}
if (record_output) {
this.outputs.push(json);
}
};
OutputArea.prototype.handle_appended = function () {

Loading…
Cancel
Save