##// END OF EJS Templates
Clear widgets upon cell execute
Jonathan Frederic -
Show More
@@ -304,6 +304,9 b' var IPython = (function (IPython) {'
304 */
304 */
305 CodeCell.prototype.execute = function () {
305 CodeCell.prototype.execute = function () {
306 this.output_area.clear_output();
306 this.output_area.clear_output();
307 this.widget_subarea.html('');
308 this.widget_subarea.height('');
309 this.widget_area.height('');
307 this.set_input_prompt('*');
310 this.set_input_prompt('*');
308 this.element.addClass("running");
311 this.element.addClass("running");
309 if (this.last_msg_id) {
312 if (this.last_msg_id) {
General Comments 0
You need to be logged in to leave comments. Login now