client: style

This commit is contained in:
Guillermo Rauch
2012-12-17 09:58:34 -03:00
parent bfd019c2f3
commit deefa7bbb9

View File

@@ -41,8 +41,8 @@ function Client(server, conn){
Client.prototype.setup = function(){
this.onclose = this.onclose.bind(this);
this.ondata = this.ondata.bind(this);
this.conn.on('close', this.onclose);
this.conn.on('data', this.ondata);
this.conn.on('close', this.onclose);
};
/**