Skip to content

Instantly share code, notes, and snippets.

@yoko
Created June 10, 2011 05:52
Show Gist options
  • Save yoko/1018302 to your computer and use it in GitHub Desktop.
Save yoko/1018302 to your computer and use it in GitHub Desktop.
var d = $.Deferred()
.done(function() {
console.log('done1', this === d);
})
.done(function() {
console.log('done2', this === d);
});
d.resolve();
// "done1", true
// "done2", true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment