Skip to content

Instantly share code, notes, and snippets.

@etagwerker
Created April 9, 2010 22:13
Show Gist options
  • Save etagwerker/361644 to your computer and use it in GitHub Desktop.
Save etagwerker/361644 to your computer and use it in GitHub Desktop.
/*
Correction for step #5 of http://pusherapp.com/docs/quickstart
Where it says:
*/
server.bind('thing-create', function(thing) {
alert('A thing was created: '+ thing.name);
};)
/* It should say: */
server.bind('thing-create', function(thing) {
alert('A thing was created: '+ thing.name);
})
/* No syntax error now. */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment