Skip to content

Instantly share code, notes, and snippets.

View garybake's full-sized avatar
🐱

Gary Bake garybake

🐱
View GitHub Profile
@jwreagor
jwreagor / gist:3880348
Created October 12, 2012 17:21
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;
});