From 9b1a0d70a2e09a1c45fb0a9dff547fd45d87166d Mon Sep 17 00:00:00 2001 From: Jason Grout Date: Tue, 31 Dec 2013 14:30:42 -0700 Subject: [PATCH] fix a handle_status handler --- IPython/html/static/notebook/js/widgets/base.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPython/html/static/notebook/js/widgets/base.js b/IPython/html/static/notebook/js/widgets/base.js index fcc30c51a..2f95ce7a3 100644 --- a/IPython/html/static/notebook/js/widgets/base.js +++ b/IPython/html/static/notebook/js/widgets/base.js @@ -225,7 +225,7 @@ function(widget_manager, underscore, backbone){ clear_output : handle_clear_output, status : function (msg) { - that._handle_status(msg, that.cell_callbacks()); + that.model._handle_status(msg, that.cell_callbacks()); }, // Special function only registered by widget messages.