|
|
|
|
@ -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 () {
|
|
|
|
|
|