mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-21 04:10:17 +08:00
retab tab to space
This commit is contained in:
parent
523ae0c377
commit
366cba5916
@ -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();
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user