Removed unneeded .bind

This commit is contained in:
Guillermo Rauch
2012-01-17 08:12:08 -08:00
parent b8d126c2c2
commit 3877183268

View File

@@ -42,7 +42,6 @@ function Socket (opts) {
this.transports = opts.transports || ['polling', 'websocket', 'flashsocket'];
this.readyState = '';
this.writeBuffer = [];
this.flush = this.flush.bind(this);
this.open();
};