Skip to content

Instantly share code, notes, and snippets.

@jwreagor
Created October 12, 2012 17:21
Show Gist options
  • Save jwreagor/3880348 to your computer and use it in GitHub Desktop.
Save jwreagor/3880348 to your computer and use it in GitHub Desktop.
Manual tracing of ExtJS event fires
Ext.util.Observable.prototype.fireEvent =
Ext.Function.createInterceptor(Ext.util.Observable.prototype.fireEvent, function() {
console.log(this.$className, arguments, this);
return true;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment