From efa59b8022fc18670136df856696cf618d801683 2014-01-16 10:57:01 From: Jonathan Frederic Date: 2014-01-16 10:57:01 Subject: [PATCH] Added missing parameter to get_msg_cell call --- diff --git a/IPython/html/static/notebook/js/widget.js b/IPython/html/static/notebook/js/widget.js index 3348929..80457bb 100644 --- a/IPython/html/static/notebook/js/widget.js +++ b/IPython/html/static/notebook/js/widget.js @@ -299,7 +299,7 @@ define(["components/underscore/underscore-min", _get_output_area: function (msg_id) { // First, check to see if the msg was triggered by cell execution. - var cell = IPython.notebook.get_msg_cell(); + var cell = IPython.notebook.get_msg_cell(msg_id); if (cell != null) { return cell.output_area; }