Skip to content

Instantly share code, notes, and snippets.

@jhnlsn
Created March 25, 2015 14:24
Show Gist options
  • Save jhnlsn/62e41b0e1006fbd4dcd7 to your computer and use it in GitHub Desktop.
Save jhnlsn/62e41b0e1006fbd4dcd7 to your computer and use it in GitHub Desktop.
var done = _.after(3, function(){
console.log('all done');
})
$.get('url', function(){
done();
});
$.get('url', function(){
done();
});
$.get('url', function(){
done();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment