Skip to content

Instantly share code, notes, and snippets.

@coderarity
Created October 11, 2012 19:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coderarity/cc80597acc89beff454f to your computer and use it in GitHub Desktop.
Save coderarity/cc80597acc89beff454f to your computer and use it in GitHub Desktop.
// WRONG
app.server.close();
testConnection();
// yes :D
app.server.close(function () {
testConnection();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment