Skip to content

Instantly share code, notes, and snippets.

@3rd-Eden
Created November 2, 2010 22:04
Show Gist options
  • Save 3rd-Eden/660385 to your computer and use it in GitHub Desktop.
Save 3rd-Eden/660385 to your computer and use it in GitHub Desktop.
reconnect.js
io.on("disconnect", function(){
setTimeout(function(){
if( io.connected ){
return io.fire("reconnect");
}
ignite.io.connect();
setTimeout( arguments.callee, 15000 )
}, 15000 );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment