Skip to content

Instantly share code, notes, and snippets.

@eriwen
Created December 16, 2013 16:27
Show Gist options
  • Save eriwen/7989857 to your computer and use it in GitHub Desktop.
Save eriwen/7989857 to your computer and use it in GitHub Desktop.
JavaScript Events example
$(document).on('gnip:activitiesloaded', this.showActivities);
$(document).on('gnip:activitieserror', this.showError);
function showActivities(eventObj, tweets) {
// Render le tweets
}
function showError() {...}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment