some connection in intermediate screen

This commit is contained in:
Manuel Araoz 2014-08-18 12:46:51 -04:00
commit 652726dbe9
3 changed files with 6 additions and 2 deletions

View file

@ -309,7 +309,8 @@ Network.prototype.start = function(opts, openCallback) {
this.socket.removeAllListeners();
}
this.socket = io.connect(this.host + ':' + this.port, {
var hostPort = this.host + ':' + this.port;
this.socket = io.connect(hostPort, {
reconnection: false,
});
this._setupConnectionHandlers(openCallback);