##// END OF EJS Templates
Removed left over log statements
Jonathan Frederic -
Show More
@@ -290,7 +290,6 b' var IPython = (function (IPython) {'
290 OutputArea.prototype.append_output = function (json, dynamic) {
290 OutputArea.prototype.append_output = function (json, dynamic) {
291 // If dynamic is true, javascript output will be eval'd.
291 // If dynamic is true, javascript output will be eval'd.
292 this.expand();
292 this.expand();
293 console.log('appending output');
294 // Clear the output if clear is queued.
293 // Clear the output if clear is queued.
295 var needs_height_reset = false;
294 var needs_height_reset = false;
296 if (this.clear_queued) {
295 if (this.clear_queued) {
@@ -473,7 +472,6 b' var IPython = (function (IPython) {'
473 container.append(element);
472 container.append(element);
474 // Div for js shouldn't be drawn, as it will add empty height to the area.
473 // Div for js shouldn't be drawn, as it will add empty height to the area.
475 container.hide();
474 container.hide();
476 console.log('append js');
477 // If the Javascript appends content to `element` that should be drawn, then
475 // If the Javascript appends content to `element` that should be drawn, then
478 // it must also call `container.show()`.
476 // it must also call `container.show()`.
479 try {
477 try {
General Comments 0
You need to be logged in to leave comments. Login now