Skip to content

Instantly share code, notes, and snippets.

@r-sal
Created April 20, 2013 02:45
Show Gist options
  • Save r-sal/5424516 to your computer and use it in GitHub Desktop.
Save r-sal/5424516 to your computer and use it in GitHub Desktop.
var getData = function(callback) {
$.getJSON('https://api.twitter.com/1/users/show.json?screen_name=brunch&callback=?').done(function(twitter) {
$.getJSON('https://api.github.com/repos/brunch/brunch').done(function(github) {
callback({github: github.watchers, twitter: twitter.followers_count});
});
});
};
getData();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment