Created
October 12, 2012 17:21
-
-
Save jwreagor/3880348 to your computer and use it in GitHub Desktop.
Manual tracing of ExtJS event fires
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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