mirror of
https://github.com/jupyter/notebook.git
synced 2025-02-17 12:39:54 +08:00
status_started.Kernel was never triggered
This commit is contained in:
parent
2c65ea0416
commit
c4006f1439
@ -219,7 +219,7 @@ define([
|
||||
var channels = [this.shell_channel, this.iopub_channel, this.stdin_channel];
|
||||
for (var i=0; i < channels.length; i++) {
|
||||
// if any channel is not ready, don't trigger event.
|
||||
if ( channels[i].readyState == WebSocket.OPEN ) return;
|
||||
if ( channels[i].readyState !== WebSocket.OPEN ) return;
|
||||
}
|
||||
// all events ready, trigger started event.
|
||||
this.events.trigger('status_started.Kernel', {kernel: this});
|
||||
|
Loading…
Reference in New Issue
Block a user