Skip to content

Instantly share code, notes, and snippets.

@stevenyxu
Created April 11, 2012 22:43
Show Gist options
  • Save stevenyxu/2363260 to your computer and use it in GitHub Desktop.
Save stevenyxu/2363260 to your computer and use it in GitHub Desktop.
Preserving "this" inside a function where you can't control the callee
var self = this;
callbackInvoker(function(){
self.doStuff();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment