Форк Rambox
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
377 B

Ext.define('Ext.overrides.app.domain.Component', {
override: 'Ext.app.domain.Component',
requires: [
'Ext.Component'
]
}, function(ComponentDomain) {
// The core Component domain monitors events on the Ext.Widget class
// in Ext Components are not widgets so we need to monitor Ext.Component as well.
ComponentDomain.monitor(Ext.Component);
});