Merge pull request #431 from Carreau/fix-58

Fix bad message break notebook
pull/435/head
Jonathan Frederic 11 years ago
commit 1fe6dbb4e4

@ -883,7 +883,7 @@ define([
this._msg_queue = this._msg_queue.then(function() {
return serialize.deserialize(e.data);
}).then(function(msg) {return that._finish_ws_message(msg);})
.catch(utils.reject("Couldn't process kernel message", true));
.catch(function(error) {console.error("Couldn't process kernel message", error) });
};
Kernel.prototype._finish_ws_message = function (msg) {

Loading…
Cancel
Save