2
0
mirror of https://github.com/jupyter/notebook.git synced 2025-03-31 13:40:29 +08:00

remove unused/not working function

This commit is contained in:
Matthias BUSSONNIER 2013-02-16 11:47:31 +01:00
parent e965757a33
commit 1f402a1dac

@ -515,27 +515,6 @@ var IPython = (function (IPython) {
};
Notebook.prototype.sort_cells = function () {
// This is not working right now. Calling this will actually crash
// the browser. I think there is an infinite loop in here...
var ncells = this.ncells();
var sindex = this.get_selected_index();
var swapped;
do {
swapped = false;
for (var i=1; i<ncells; i++) {
current = this.get_cell(i);
previous = this.get_cell(i-1);
if (previous.input_prompt_number > current.input_prompt_number) {
this.move_cell_up(i);
swapped = true;
};
};
} while (swapped);
this.select(sindex);
return this;
};
// Insertion, deletion.
Notebook.prototype.delete_cell = function (index) {