Skip to content

Commit

Permalink
Build
Browse files Browse the repository at this point in the history
  • Loading branch information
rauchg committed Aug 2, 2011
1 parent 66925b2 commit dd60feb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions dist/socket.io.js
Expand Up @@ -1857,6 +1857,11 @@

function reset () {
if (self.connected) {
for (var i in self.namespaces) {
if (self.namespaces.hasOwnProperty(i) && '' !== i) {
self.namespaces[i].packet({ type: 'connect' });
}
}
self.publish('reconnect', self.transport.name, self.reconnectionAttempts);
}

Expand Down Expand Up @@ -3521,6 +3526,8 @@ var swfobject=function(){var D="undefined",r="object",S="Shockwave Flash",W="Sho
} else {
this.iframe.onload = complete;
}

this.socket.setBuffer(true);
};

/**
Expand Down

0 comments on commit dd60feb

Please sign in to comment.