From f84acbbaffd300cdf1b941a4ee28a32f886b3f74 Mon Sep 17 00:00:00 2001 From: Matthias BUSSONNIER Date: Mon, 25 Feb 2013 23:19:42 +0100 Subject: [PATCH] fix run-all (that-> this) --- IPython/frontend/html/notebook/static/js/notebook.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPython/frontend/html/notebook/static/js/notebook.js b/IPython/frontend/html/notebook/static/js/notebook.js index d1e5a9667..2452c3f5e 100644 --- a/IPython/frontend/html/notebook/static/js/notebook.js +++ b/IPython/frontend/html/notebook/static/js/notebook.js @@ -1153,7 +1153,7 @@ var IPython = (function (IPython) { Notebook.prototype.execute_all_cells = function () { this.execute_cell_range(0, this.ncells()); - that.scroll_to_bottom(); + this.scroll_to_bottom(); }; Notebook.prototype.execute_cell_range = function (start, end) {