Added missing parameter to get_msg_cell call

This commit is contained in:
Jonathan Frederic 2013-11-15 18:25:40 +00:00
parent 48eaebf683
commit 90030b238b

View File

@ -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;
}