retab tab to space

This commit is contained in:
Matthias BUSSONNIER 2012-05-16 13:33:51 +02:00 committed by Brian Granger
parent 523ae0c377
commit 366cba5916

View File

@ -46,7 +46,7 @@ var IPython = (function (IPython) {
var output = $('<div></div>');
cell.append(input).append(output);
this.element = cell;
this.output_area = new IPython.OutputArea(output, true);
this.output_area = new IPython.OutputArea(output, true);
// construct a completer only if class exist
// otherwise no print view
@ -192,17 +192,17 @@ var IPython = (function (IPython) {
CodeCell.prototype.collapse = function () {
this.output_area.collapse();
this.output_area.collapse();
};
CodeCell.prototype.expand = function () {
this.output_area.expand();
this.output_area.expand();
};
CodeCell.prototype.toggle_output = function () {
this.output_area.toggle_output();
this.output_area.toggle_output();
};