From 507a66235b9db7ad37482790795f7d10cd6c714c Mon Sep 17 00:00:00 2001 From: Matthias BUSSONNIER Date: Sun, 15 Apr 2012 13:08:25 +0200 Subject: [PATCH] fix typo that->this --- IPython/frontend/html/notebook/static/js/tooltip.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPython/frontend/html/notebook/static/js/tooltip.js b/IPython/frontend/html/notebook/static/js/tooltip.js index 7dea6967a..172f5802d 100644 --- a/IPython/frontend/html/notebook/static/js/tooltip.js +++ b/IPython/frontend/html/notebook/static/js/tooltip.js @@ -99,7 +99,7 @@ var IPython = (function (IPython) { // result as invoking `something?` Tooltip.prototype.showInPager = function() { - var msg_id = IPython.notebook.kernel.execute(that.name+"?"); + var msg_id = IPython.notebook.kernel.execute(this.name+"?"); IPython.notebook.msg_cell_map[msg_id] = IPython.notebook.get_selected_cell().cell_id; this.remove_and_cancel_tooltip(); this._cmfocus();