From 971c63d78064dd8ebe987a4bee5cd01eecccb072 Mon Sep 17 00:00:00 2001 From: Jason Grout Date: Tue, 14 Feb 2017 12:23:19 -0500 Subject: [PATCH] Update codecell.js --- notebook/static/notebook/js/codecell.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebook/static/notebook/js/codecell.js b/notebook/static/notebook/js/codecell.js index 20d217919..0f6913c9a 100644 --- a/notebook/static/notebook/js/codecell.js +++ b/notebook/static/notebook/js/codecell.js @@ -510,7 +510,7 @@ define([ CodeCell.prototype.clear_output = function (wait) { this.output_area.clear_output(wait); this.set_input_prompt(); - this.events.trigger('clearOutput.CodeCell', {cell: this}); + this.events.trigger('clear_output.CodeCell', {cell: this}); };