mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-06 11:35:24 +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>');
|
var output = $('<div></div>');
|
||||||
cell.append(input).append(output);
|
cell.append(input).append(output);
|
||||||
this.element = cell;
|
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
|
// construct a completer only if class exist
|
||||||
// otherwise no print view
|
// otherwise no print view
|
||||||
@ -192,17 +192,17 @@ var IPython = (function (IPython) {
|
|||||||
|
|
||||||
|
|
||||||
CodeCell.prototype.collapse = function () {
|
CodeCell.prototype.collapse = function () {
|
||||||
this.output_area.collapse();
|
this.output_area.collapse();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
CodeCell.prototype.expand = function () {
|
CodeCell.prototype.expand = function () {
|
||||||
this.output_area.expand();
|
this.output_area.expand();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
CodeCell.prototype.toggle_output = function () {
|
CodeCell.prototype.toggle_output = function () {
|
||||||
this.output_area.toggle_output();
|
this.output_area.toggle_output();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user