We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fc6844f + f50d51d commit 896f1daCopy full SHA for 896f1da
ipywidgets/static/widgets/js/widget.js
@@ -52,7 +52,6 @@ define(["./utils",
52
* An ID unique to this model.
53
* comm : Comm instance (optional)
54
*/
55
- WidgetModel.__super__.constructor.apply(this);
56
this.widget_manager = widget_manager;
57
this.state_change = Promise.resolve();
58
this._buffered_state_diff = {};
@@ -99,6 +98,7 @@ define(["./utils",
99
98
widget_manager.notebook.events.on('kernel_restarting.Kernel', died);
100
widget_manager.notebook.events.on('kernel_dead.Kernel', died);
101
}
+ WidgetModel.__super__.constructor.apply(this);
102
},
103
104
send: function (content, callbacks, buffers) {
0 commit comments