Is there a reason the event constructor isn't setting the name property that is being passed in?
proposed fix:
1573 Ext.util.Event = function(obj, name){
1574 - this.name;
1574 + this.name = name;
Printable View
Is there a reason the event constructor isn't setting the name property that is being passed in?
proposed fix:
1573 Ext.util.Event = function(obj, name){
1574 - this.name;
1574 + this.name = name;
I am referring to line 1574 in ext-core-debug.js
Looks kind of funny sitting there by itself. ;)