status_started.Kernel was never triggered

This commit is contained in:
Sylvain Corlay 2014-09-18 17:23:50 +00:00
parent 2c65ea0416
commit c4006f1439

View File

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