mirror of
https://github.com/jupyter/notebook.git
synced 2025-04-06 13:50:29 +08:00
Fixed off by one error in get_prev_cell
Not sure why this was a TODO. Maybe `find_cell_index()` returned zero at one time, but in the browsers I tested, it always returns null if not found.
This commit is contained in:
parent
d71cdbd233
commit
3997769def
@ -465,11 +465,9 @@ define([
|
||||
* @return {Cell} The previous cell
|
||||
*/
|
||||
Notebook.prototype.get_prev_cell = function (cell) {
|
||||
// TODO: off-by-one
|
||||
// nb.get_prev_cell(nb.get_cell(1)) is null
|
||||
var result = null;
|
||||
var index = this.find_cell_index(cell);
|
||||
if (index !== null && index > 1) {
|
||||
if (index !== null && index > 0) {
|
||||
result = this.get_cell(index-1);
|
||||
}
|
||||
return result;
|
||||
|
Loading…
x
Reference in New Issue
Block a user