##// END OF EJS Templates
Fixing bug in prompt_area handling of OutputArea.
Brian Granger -
Show More
@@ -44,7 +44,7 b' var IPython = (function (IPython) {'
44 44 var output = $('<div></div>');
45 45 cell.append(input).append(output);
46 46 this.element = cell;
47 this.output_area = new IPython.OutputArea(output, false);
47 this.output_area = new IPython.OutputArea(output, true);
48 48
49 49 // construct a completer only if class exist
50 50 // otherwise no print view
@@ -22,7 +22,9 b' var IPython = (function (IPython) {'
22 22 this.clear_out_timeout = null;
23 23 if (prompt_area === undefined) {
24 24 this.prompt_area = true;
25 }
25 } else {
26 this.prompt_area = prompt_area;
27 };
26 28 this.style();
27 29 };
28 30
General Comments 0
You need to be logged in to leave comments. Login now