deactivated automatic client reconnection

This commit is contained in:
logsol 2012-07-28 01:08:27 +02:00
parent ebb400a289
commit 5d11540c55
3 changed files with 20 additions and 7 deletions

View file

@ -5,8 +5,8 @@ define([
function(Networker, SocketIO) {
function Client(location) {
this.socket = SocketIO.connect(location);
function Client(location, options) {
this.socket = SocketIO.connect(location, options);
this.networker = new Networker(this.socket);
}